 /* ===== Consistent Color Palette ===== */
  :root {
    --primary: #6C5CE7;
    --secondary: #00CEC9;
    --dark: #2D3436;
    --light: #F5F6FA;
    --white: #FFFFFF;
    --gray: #DFE6E9;
    --danger: #E74C3C;
    --success: #2ECC71;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* ===== Base Styles ===== */
  .password-reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    box-sizing: border-box;
  }

  .password-reset-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
  }

  /* ===== Header ===== */
  .reset-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .reset-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .reset-icon i {
    font-size: 2.5rem;
    color: var(--primary);
  }

  /* ===== Welcome Section ===== */
  .welcome-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0;
  }

  .welcome-greeting {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .welcome-text {
    color: #555;
    margin-bottom: 0;
  }

  /* ===== Form Section ===== */
  .form-section {
    margin: 2rem 0;
    padding: 0;
    width: 100%;
  }

  .form-group {
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
  }

  .input-with-icon {
    position: relative;
    width: 100%;
  }

  .input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7F8C8D;
  }

  .input-with-icon input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }

  .input-with-icon input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
  }

  /* ===== Button ===== */
  .btn-send-otp {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-sizing: border-box;
  }

  .btn-send-otp:hover {
    background: #5649D2;
    transform: translateY(-2px);
  }

  /* ===== Security Tips ===== */
  .security-tips {
    background: rgba(108, 92, 231, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    margin-top: 2rem;
  }

  .security-tips h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .security-tips ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #555;
  }

  .security-tips li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  /* ===== Messages ===== */
  .reset-messages {
    margin-bottom: 1.5rem;
  }

  .alert-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
  }

  .alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    border-left: 4px solid var(--danger);
  }

  /* ===== Responsive Design ===== */
  @media (max-width: 768px) {
    .password-reset-container {
      padding: 1rem;
    }
    
    .password-reset-card {
      padding: 2rem 1.5rem;
    }
  }