:root {
  --primary: #4361ee;
  --primary-light: #e0e7ff;
  --gray-light: #f8f9fa;
  --text: #2d3748;
  --text-light: #64748b;
}

body {
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 100%);
  min-height: 100vh;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Main Container */
.forgot-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

/* Glassmorphic Card */
.forgot-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 50px 45px;
  box-shadow:
    0 20px 40px rgba(67, 97, 238, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.forgot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4361ee, #7209b7, #f72585);
  border-radius: 24px 24px 0 0;
}

/* Logo & Title */
.logo-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #000000, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Icon */
.icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.icon-circle i {
  font-size: 2.5rem;
  color: white;
}

/* Text Content */
.info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  border: 2px solid #e0e7ff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.15);
  margin-top: 20px;
}

.back-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.3);
}

/* Illustration */
.illustration-wrapper {
  flex-shrink: 0;
}

.illustration-img {
  max-width: 460px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(67, 97, 238, 0.15));
  transition: transform 0.4s ease;
}

.illustration-img:hover {
  transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 992px) {
  .forgot-container {
    flex-direction: column;
    gap: 50px;
  }
  .forgot-card {
    padding: 45px 35px;
  }
  .illustration-img {
    max-width: 380px;
  }
}

@media (max-width: 576px) {
  .forgot-card {
    padding: 40px 25px;
    border-radius: 20px;
  }
  .logo-title {
    font-size: 2rem;
  }
  .illustration-img {
    max-width: 320px;
  }
}
