.verify-email-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.verify-email-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 108, 223, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
  animation: pulse 10s infinite alternate;
}

.bg-blob-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  z-index: 0;
  animation: pulse 15s infinite alternate-reverse;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.verification-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.status-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.status-icon-wrap.success {
  background: #e6f9f0;
  color: #16a34a;
}

.status-icon-wrap.error {
  background: #fee2e2;
  color: #dc2626;
}

.status-icon-wrap.loading {
  background: #f1f5f9;
  color: #2d6cdf;
}

.status-icon-wrap i {
  font-size: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(45, 108, 223, 0.1);
  border-left-color: #2d6cdf;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.verification-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.verification-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.redirect-notice {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  font-size: 14px;
  color: #94a3b8;
}

.redirect-notice span {
  font-weight: 600;
  color: #2d6cdf;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: #f1f5f9;
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #2d6cdf;
  width: 100%;
  transform-origin: left;
  animation: countdown 5s linear forwards;
}

@keyframes countdown {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #2d6cdf;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.home-link:hover {
  gap: 12px;
  color: #1e3a8a;
}
