/* =====================================================
   VERIFY PAGE (pro, cohérent avec login.css)
   ===================================================== */

.auth-verify{
  --auth-border:#e9e9e9;
  --auth-muted:#6b7280;
  --auth-text:#111827;
  --auth-shadow:0 18px 50px rgba(0,0,0,.08);
  --auth-radius:14px;
}

.auth-section{
  padding-top:48px;
  padding-bottom:56px;
}

.auth-card{
  background:#fff;
  border:1px solid var(--auth-border);
  border-radius:var(--auth-radius);
  box-shadow:var(--auth-shadow);
}

.auth-card-inner{
  padding:22px;
}

.auth-head{
  margin-bottom:14px;
}

.auth-title{
  margin:0 0 6px;
  font-size:1.35rem;
  font-weight:800;
  color:var(--auth-text);
}

.auth-subtitle{
  margin:0;
  color:var(--auth-muted);
  font-size:.95rem;
  line-height:1.55;
}

/* Tabs */
.auth-tabs{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin:14px 0 14px;
}

.auth-tab{
  border:1px solid var(--auth-border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:700;
  color:#111;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.auth-tab i{ opacity:.9; }
.auth-tab:hover{ transform: translateY(-1px); }

.auth-tab.is-active{
  background:#111;
  border-color:#111;
  color:#fff;
}

/* Field */
.auth-field{ margin-bottom:14px; }
.auth-label{
  display:block;
  font-size:.82rem;
  font-weight:700;
  color:#374151;
  margin-bottom:6px;
}

.auth-help{
  display:block;
  margin-top:6px;
  font-size:.82rem;
  color:var(--auth-muted);
}

.auth-input{
  position:relative;
}

.auth-input-icon{
  position:absolute;
  top:50%;
  left:12px;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
  pointer-events:none;
}

.auth-verify .form-control{
  height:46px;
  border-radius:12px;
  border:1px solid var(--auth-border);
  padding-left:44px;
  font-size:.95rem;
  color:var(--auth-text);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.auth-verify .form-control:focus{
  border-color:rgba(17,17,17,.35);
  box-shadow:0 0 0 4px rgba(17,17,17,.08);
}

/* CTA */
.auth-cta{
  height:46px;
  border-radius:12px;
  font-weight:800;
}

.auth-links{
  margin-top:12px;
  text-align:center;
}

.auth-links a{
  text-decoration:none;
}
.auth-links a:hover{
  text-decoration:underline;
}

/* Responsive */
@media (max-width: 575px){
  .auth-card-inner{ padding:16px; }
  .auth-section{ padding-top:28px; padding-bottom:36px; }
  .auth-title{ font-size:1.2rem; }
  .auth-tabs{ grid-template-columns:1fr; }
}
