
/* V50 - Login/Cadastro profissional */
.auth-pro-section{
  background:linear-gradient(180deg,#f8fafc 0%,#eef6ff 100%);
}
.auth-pro-wrap{
  display:grid;
  grid-template-columns:minmax(280px,.82fr) minmax(360px,1.18fr);
  gap:24px;
  align-items:stretch;
}
.auth-pro-panel{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:32px;
  background:linear-gradient(145deg,var(--primary,#0f766e) 0%,#0f4c81 100%);
  color:#fff;
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 18px 42px rgba(15,23,42,.16);
}
.auth-pro-panel::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:210px;
  height:210px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}
.auth-pro-kicker{
  display:inline-flex;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
}
.auth-pro-panel h2{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.02;
  letter-spacing:-.04em;
}
.auth-pro-panel p{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.65;
}
.auth-pro-benefits{
  display:grid;
  gap:9px;
  margin-top:24px;
}
.auth-pro-benefits span{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:#fff;
}
.auth-pro-card{
  border:1px solid #dbe5ef;
  border-radius:28px;
  background:#fff;
  padding:28px;
  box-shadow:0 18px 42px rgba(15,23,42,.08);
}
.auth-card-head{
  margin-bottom:18px;
}
.auth-card-head h2{
  margin:0 0 6px;
  color:#0f172a;
  font-size:30px;
  letter-spacing:-.03em;
}
.auth-card-head p{
  margin:0;
  color:#64748b;
}
.auth-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.auth-field{
  display:grid;
  gap:7px;
  margin-bottom:14px;
}
.auth-grid .auth-field{
  margin-bottom:0;
}
.auth-field span{
  color:#334155;
  font-weight:900;
  font-size:14px;
}
.auth-field span b{
  color:#dc2626;
}
.auth-field input{
  width:100%;
  min-height:48px;
  border:1px solid #dbe5ef;
  border-radius:14px;
  background:#f8fafc;
  color:#0f172a;
  padding:0 14px;
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.auth-field input:focus{
  background:#fff;
  border-color:var(--primary,#0f766e);
  box-shadow:0 0 0 4px rgba(15,118,110,.10);
}
.auth-field.has-error input,
.auth-field.is-invalid input{
  border-color:#dc2626!important;
  background:#fff7f7!important;
  box-shadow:0 0 0 4px rgba(220,38,38,.08)!important;
}
.field-error{
  min-height:16px;
  color:#dc2626;
  font-weight:800;
  font-size:12px;
  line-height:1.25;
}
.field-hint{
  color:#64748b;
  font-size:12px;
  line-height:1.25;
}
.auth-submit{
  width:100%;
  min-height:50px;
  margin-top:18px;
  border-radius:15px;
  font-weight:950;
}
.auth-switch{
  margin:16px 0 0;
  text-align:center;
  color:#64748b;
  font-weight:700;
}
.auth-switch a{
  color:var(--primary,#0f766e);
  font-weight:950;
}
@media(max-width:900px){
  .auth-pro-wrap{
    grid-template-columns:1fr;
    gap:16px;
  }
  .auth-pro-panel{
    min-height:auto;
    padding:24px;
    border-radius:22px;
  }
  .auth-pro-panel h2{
    font-size:32px;
  }
  .auth-pro-card{
    padding:20px;
    border-radius:22px;
  }
  .auth-grid{
    grid-template-columns:1fr;
  }
}


/* V51 - Login/Cadastro sem card lateral */
.auth-pro-wrap{
  grid-template-columns:minmax(320px,620px)!important;
  justify-content:center!important;
  align-items:start!important;
}

.auth-pro-card{
  width:100%!important;
  max-width:620px!important;
  margin:0 auto!important;
}

@media(max-width:900px){
  .auth-pro-wrap{
    grid-template-columns:1fr!important;
  }
}
