

.verify-account-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.verify-account-page .card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}


/* SUCCESS ICON */
.verify-account-page .success-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}


.verify-account-page .checkmark {
  width: 36px;
  height: 36px;
  stroke: #16a34a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}


.verify-account-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.verify-account-page .subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.verify-account-page .info-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.verify-account-page .info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #64748b;
  padding: 0.4rem 0;
}

.verify-account-page .info-row:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.verify-account-page .info-row .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #2563eb;
}

.verify-account-page .info-row strong {
  color: #1e293b;
  font-weight: 600;
}

.verify-account-page .btn-primary {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: #0d2147;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 0.75rem;
}

.verify-account-page .btn-primary:hover {
  background: #1a3a8f;
  transform: translateY(-1px);
}

.verify-account-page .btn-primary:active {
  transform: translateY(0);
}

.verify-account-page .btn-secondary {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: transparent;
  color: #2563eb;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: 1.5px solid #2563eb;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.verify-account-page .btn-secondary:hover {
  background: #eff6ff;
}

.verify-account-page .divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #64748b;
  font-size: 0.8rem;
}

.verify-account-page .divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.verify-account-page .footer-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
}

.verify-account-page .footer-note a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.verify-account-page .footer-note a:hover {
  text-decoration: underline;
}