/* ==========================================
   SPLASH SCREEN - LIGUÉY
   Charte graphique respectée
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
}

/* Splash Container */
.splash-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #1C3F66 0%, #4A90E2 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Circles */
.splash-container::before,
.splash-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 20s infinite ease-in-out;
}

.splash-container::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.splash-container::after {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Logo Wrapper */
.logo-wrapper {
  position: relative;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

/* Logo Circle */
.splash-logo {
  width: 180px;
  height: 180px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 0 15px rgba(255, 255, 255, 0.1),
              0 0 0 30px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 700;
  color: #4A90E2;
  font-family: 'Poppins', sans-serif;
  animation: pulse 2s ease-in-out infinite;
  z-index: 2;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 15px rgba(255, 255, 255, 0.1),
                0 0 0 30px rgba(255, 255, 255, 0.05);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4),
                0 0 0 20px rgba(255, 255, 255, 0.15),
                0 0 0 40px rgba(255, 255, 255, 0.08);
  }
}

/* Fade In Down Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Wrapper */
.content-wrapper {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Main Text */
.splash-text {
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

/* Subtext */
.splash-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  font-weight: 300;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader Container */
.loader-container {
  z-index: 2;
}

/* Loader Dots */
.loader {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.loader span {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #7ED321, #FFFFFF);
  border-radius: 50%;
  animation: bounce 0.8s infinite ease-in-out;
  box-shadow: 0 4px 10px rgba(126, 211, 33, 0.4);
}

.loader span:nth-child(1) {
  animation-delay: 0s;
}

.loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.loader span:nth-child(3) {
  animation-delay: 0.3s;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8) translateY(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2) translateY(-20px);
    opacity: 1;
  }
}

/* Progress Container */
.progress-container {
  width: 280px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Progress Bar */
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #7ED321, #4A90E2);
  border-radius: 10px;
  animation: loadProgress 3s ease-in-out forwards;
  box-shadow: 0 0 20px rgba(126, 211, 33, 0.6);
}

/* Load Progress Animation */
@keyframes loadProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Version Text */
.version-text {
  position: absolute;
  bottom: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 300;
  z-index: 2;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 768px) {
  .splash-logo {
    width: 140px;
    height: 140px;
    font-size: 56px;
    padding: 20px;
  }

  .splash-text {
    font-size: 1.4rem;
    padding: 0 20px;
  }

  .splash-subtext {
    font-size: 0.9rem;
    padding: 0 30px;
  }

  .progress-container {
    width: 220px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .splash-logo {
    width: 120px;
    height: 120px;
    font-size: 48px;
  }

  .splash-text {
    font-size: 1.2rem;
  }

  .splash-subtext {
    font-size: 0.85rem;
  }

  .progress-container {
    width: 200px;
  }
}
/* ==========================================
   SIGNUP PAGE - À AJOUTER DANS style.css
   ========================================== */

/* Main Wrapper - Split Layout */
.signup-wrapper {
  display: flex;
  min-height: 100vh;
}

/* LEFT SIDE - BRANDING */
.signup-left {
  flex: 1;
  background: linear-gradient(135deg, #1C3F66 0%, #4A90E2 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.signup-left::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.signup-left::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.branding {
  text-align: center;
  margin-bottom: 60px;
  z-index: 2;
}

.logo-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #4A90E2;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.brand-tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.feature-item i {
  font-size: 24px;
  color: #7ED321;
}

/* RIGHT SIDE - FORM (avec scroll fixé) */
.signup-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto; /* FIX: Permet le défilement */
  max-height: 100vh; /* FIX: Limite la hauteur */
}

.signup-container {
  width: 100%;
  max-width: 500px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: auto; /* Centre verticalement */
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 35px;
}

.signup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #1C3F66;
  margin-bottom: 8px;
  font-weight: 700;
}

.signup-subtitle {
  color: #666;
  font-size: 0.95rem;
}

/* Form Styles */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  color: #1C3F66;
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: #4A90E2;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E6ED;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  background: #F5F7FA;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4A90E2;
  background: white;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

/* Password Group */
.password-group {
  position: relative;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: #4A90E2;
}

/* Password Strength */
.password-strength {
  height: 4px;
  background: #E0E6ED;
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
}

.strength-bar.weak {
  width: 25%;
  background: #ff4444;
}

.strength-bar.medium {
  width: 50%;
  background: #ffa000;
}

.strength-bar.good {
  width: 75%;
  background: #4A90E2;
}

.strength-bar.strong {
  width: 100%;
  background: #7ED321;
}

.strength-text {
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

/* Checkbox Group */
.checkbox-group {
  margin-top: 5px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4A90E2;
}

.link {
  color: #4A90E2;
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}

/* Primary Button */
.btn-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #4A90E2, #1C3F66);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  margin-top: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Divider */
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
  color: #999;
  font-size: 0.9rem;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #E0E6ED;
}

.or-divider span {
  padding: 0 15px;
}

/* Social Buttons */
.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-social {
  padding: 12px;
  border: 2px solid #E0E6ED;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-btn {
  color: #DB4437;
}

.google-btn:hover {
  background: #DB4437;
  color: white;
  border-color: #DB4437;
}

.apple-btn {
  color: #000000;
}

.apple-btn:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}

.btn-social i {
  font-size: 18px;
}

/* Redirect Text */
.redirect-text {
  text-align: center;
  margin-top: 25px;
  color: #666;
  font-size: 0.95rem;
}

.redirect-link {
  color: #4A90E2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.redirect-link:hover {
  color: #1C3F66;
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN - SIGNUP
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
  .signup-left {
    display: none;
  }

  .signup-right {
    flex: 1;
  }

  .signup-container {
    max-width: 600px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .signup-container {
    padding: 30px 20px;
  }

  .signup-title {
    font-size: 1.6rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }

  .feature-item {
    font-size: 1rem;
  }
}
/* ==========================================
   LOGIN PAGE - À AJOUTER DANS style.css
   ========================================== */

/* Main Wrapper */
.login-wrapper {
  display: flex;
  min-height: 100vh;
}

/* LEFT SIDE - BRANDING */
.login-left {
  flex: 1;
  background: linear-gradient(135deg, #1C3F66 0%, #4A90E2 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.login-left::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -250px;
  left: -250px;
  animation: float 25s infinite ease-in-out;
}

.login-left::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -180px;
  right: -180px;
  animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.login-branding {
  text-align: center;
  margin-bottom: 80px;
  z-index: 2;
}

.login-logo-circle {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  color: #4A90E2;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.login-brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -1px;
}

.login-brand-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 400px;
}

/* Stats Section */
.login-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 2;
  width: 100%;
  max-width: 500px;
}

.stat-item {
  text-align: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #7ED321;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* RIGHT SIDE - FORM */
.login-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  max-height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  animation: slideInRight 0.6s ease-out;
}

/* Header */
.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #1C3F66;
  margin-bottom: 10px;
  font-weight: 700;
}

.login-subtitle {
  color: #666;
  font-size: 1rem;
}

/* Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-form-group {
  display: flex;
  flex-direction: column;
}

.login-form-group label {
  font-size: 0.9rem;
  color: #1C3F66;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-form-group label i {
  color: #4A90E2;
  font-size: 14px;
}

.login-form-group input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #E0E6ED;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  background: #F5F7FA;
}

.login-form-group input:focus {
  outline: none;
  border-color: #4A90E2;
  background: white;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.login-form-group input::placeholder {
  color: #999;
}

/* Password Group */
.login-password-group {
  position: relative;
}

.login-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-toggle-password {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}

.login-toggle-password:hover {
  color: #4A90E2;
}

/* Options Row */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -10px;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.login-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4A90E2;
}

.login-forgot-link {
  color: #4A90E2;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-forgot-link:hover {
  color: #1C3F66;
  text-decoration: underline;
}

/* Primary Button */
.login-btn-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #4A90E2, #1C3F66);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  margin-top: 10px;
}

.login-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.login-btn-primary:active {
  transform: translateY(0);
}

.login-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Divider */
.login-or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: #999;
  font-size: 0.9rem;
}

.login-or-divider::before,
.login-or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #E0E6ED;
}

.login-or-divider span {
  padding: 0 15px;
}

/* Social Buttons */
.login-social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.login-btn-social {
  padding: 13px;
  border: 2px solid #E0E6ED;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-btn-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-google-btn {
  color: #DB4437;
}

.login-google-btn:hover {
  background: #DB4437;
  color: white;
  border-color: #DB4437;
}

.login-apple-btn {
  color: #000000;
}

.login-apple-btn:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}

.login-btn-social i {
  font-size: 18px;
}

/* Redirect Text */
.login-redirect-text {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 0.95rem;
}

.login-redirect-link {
  color: #4A90E2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-redirect-link:hover {
  color: #1C3F66;
  text-decoration: underline;
}

/* ==========================================
   FORGOT PASSWORD MODAL
   ========================================== */

.forgot-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.forgot-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.forgot-modal-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.forgot-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.forgot-modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: #1C3F66;
  font-weight: 700;
}

.forgot-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.forgot-close-btn:hover {
  background: #F5F7FA;
  color: #1C3F66;
  transform: rotate(90deg);
}

.forgot-modal-text {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.forgot-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================
   RESPONSIVE DESIGN - LOGIN
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
  .login-left {
    display: none;
  }

  .login-right {
    flex: 1;
  }

  .login-container {
    max-width: 550px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .login-container {
    padding: 40px 25px;
  }

  .login-title {
    font-size: 1.8rem;
  }

  .login-social-buttons {
    grid-template-columns: 1fr;
  }

  .login-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .forgot-modal-content {
    padding: 30px 25px;
  }

  .login-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
