  .reset-password-container {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-bottom: 30px;
    }
    .reset-password-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .reset-password-header i {
      font-size: 2.5rem;
      color: #4361ee;
      margin-bottom: 1rem;
    }
    .form-control:focus {
      border-color: #4361ee;
      box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
    }
    .btn-reset {
      background: #4361ee;
      color: white;
      border: none;
      padding: 0.75rem;
      font-weight: 600;
      transition: all 0.3s;
    }
    .btn-reset:hover {
      background: #3a56e4;
      color: white;
      transform: translateY(-2px);
    }
    .reset-password-footer {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.9rem;
      color: #6c757d;
    }
    .reset-password-footer a {
      color: #4361ee;
      text-decoration: none;
    }
    .reset-password-footer a:hover {
      text-decoration: underline;
    }
    .password-strength {
      margin-top: 5px;
      font-size: 0.85rem;
    }
    .password-strength.weak {
      color: #dc3545;
    }
    .password-strength.medium {
      color: #ffc107;
    }
    .password-strength.strong {
      color: #28a745;
    }
    .password-match {
      margin-top: 5px;
      font-size: 0.85rem;
      color: #28a745;
    }
    .password-mismatch {
      margin-top: 5px;
      font-size: 0.85rem;
      color: #dc3545;
    }
    .form-step {
      display: none;
    }
    .form-step.active {
      display: block;
    }
    .otp-input-group {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    .otp-input {
      width: 50px;
      height: 50px;
      text-align: center;
      font-size: 1.2rem;
      border: 2px solid #dee2e6;
      border-radius: 5px;
    }
    .otp-input:focus {
      border-color: #4361ee;
      outline: none;
    }
    .countdown {
      text-align: center;
      margin-top: 10px;
      font-size: 0.9rem;
      color: #6c757d;
    }
    .resend-otp {
      text-align: center;
      margin-top: 10px;
    }
    .resend-otp button {
      background: none;
      border: none;
      color: #4361ee;
      cursor: pointer;
      text-decoration: underline;
    }
    .resend-otp button:disabled {
      color: #6c757d;
      cursor: not-allowed;
      text-decoration: none;
    }
    .step-indicator {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .step {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #e9ecef;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 10px;
      font-weight: bold;
      color: #6c757d;
    }
    .step.active {
      background-color: #4361ee;
      color: white;
    }
    .step.completed {
      background-color: #28a745;
      color: white;
    }
    .step-line {
      flex-grow: 1;
      height: 2px;
      background-color: #e9ecef;
      margin: 0 5px;
      align-self: center;
    }
    .step-line.completed {
      background-color: #28a745;
    }
    
    /* Message Container Styles */
.message-container {
  margin-bottom: 20px;
}

.message-container .alert {
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 0;
}

/* Responsive OTP Input Styles */
.otp-input-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 8px;
  flex-wrap: wrap;
}

.otp-input {
  flex: 1;
  min-width: 40px;
  max-width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.2rem;
  border: 2px solid #dee2e6;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.otp-input:focus {
  border-color: #4361ee;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

/* Mobile-specific OTP styles */
@media (max-width: 576px) {
  .otp-input-group {
    gap: 6px;
    justify-content: center;
  }
  
  .otp-input {
    min-width: 35px;
    max-width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .reset-password-container {
    padding: 20px 15px;
    
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .otp-input {
    min-width: 30px;
    max-width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    margin: 0 5px;
  }
  
  .step-line {
    margin: 0 3px;
  }
}

/* Password match styles */
.password-match.matched {
  color: #28a745;
  font-weight: 500;
}

.password-match.mismatched {
  color: #dc3545;
  font-weight: 500;
}

/* Button loading states */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Ensure form elements are responsive */
.form-control {
  width: 100%;
}

.input-group {
  flex-wrap: nowrap;
}

/* Step indicator responsiveness */
@media (max-width: 768px) {
  .step-indicator {
    flex-wrap: wrap;
  }
  
  .step-line {
    flex-grow: 0.5;
  }
}
    