.email-verification-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 28px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08);
}

.email-verification-banner__copy {
  flex: 1 1 auto;
}

.email-verification-banner__copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
  color: #111827;
}

.email-verification-banner__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

.email-verification-banner__meta {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

.email-verification-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.verify-email-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(244, 247, 252, 0.95), transparent 36%),
    radial-gradient(circle at top right, rgba(238, 242, 248, 0.9), transparent 34%),
    linear-gradient(180deg, #f7f8fb 0%, #edf1f7 100%);
}

.verify-email-card {
  width: min(100%, 900px);
  padding: 40px 56px 36px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 42px;
  box-shadow: 0 40px 90px rgba(17, 24, 39, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.verify-email-card::before,
.verify-email-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.verify-email-card::before {
  width: 280px;
  height: 280px;
  top: -140px;
  left: -90px;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.04) 0%, rgba(17, 24, 39, 0) 70%);
}

.verify-email-card::after {
  width: 320px;
  height: 320px;
  right: -140px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(30, 41, 59, 0.05) 0%, rgba(30, 41, 59, 0) 70%);
}

.verify-email-card__inner {
  position: relative;
  z-index: 1;
}

.verify-email-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.verify-email-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.verify-email-card__icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: rgba(17, 24, 39, 0.05);
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
}

.verify-email-card__icon.is-success {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.verify-email-card__icon.is-warning {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}

.verify-email-card__icon.is-error {
  background: rgba(220, 38, 38, 0.12);
  color: #991b1b;
}

.verify-email-card h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #111827;
}

.verify-email-card__description {
  width: min(100%, 720px);
  margin: 26px auto 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  color: #5b6473;
}

.verify-email-card__address {
  margin-top: 28px;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #111827;
  font-weight: 700;
  line-height: 1.4;
}

.verify-email-card__address span {
  font-weight: 500;
  color: #4b5563;
}

.verify-email-card__actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.verify-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 196px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.verify-email-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
}

.verify-email-btn--primary {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.verify-email-btn--ghost {
  background: rgba(255, 255, 255, 0.86);
  color: #111827;
}

.verify-email-btn[disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.verify-email-card__hint {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.verify-email-card__auto {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .email-verification-banner {
    flex-direction: column;
    border-radius: 24px;
    padding: 18px;
  }

  .email-verification-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .verify-email-shell {
    padding: 16px;
  }

  .verify-email-card {
    width: 100%;
    padding: 28px 20px 24px;
    border-radius: 28px;
  }

  .verify-email-brand {
    margin-bottom: 20px;
  }

  .verify-email-card__icon {
    width: 86px;
    height: 86px;
    margin-bottom: 22px;
    font-size: 32px;
  }

  .verify-email-card h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .verify-email-card__description {
    margin-top: 18px;
    font-size: 18px;
  }

  .verify-email-card__address {
    margin-top: 20px;
    font-size: 20px;
    word-break: break-word;
  }

  .verify-email-card__actions {
    gap: 12px;
  }

  .verify-email-btn {
    width: 100%;
    min-width: 0;
  }

  .verify-email-card__hint {
    font-size: 14px;
  }
}
