
  body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
  }

  .reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px 0;
    margin-top: 50px;
  }

  .reset-card {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .reset-card h2 {
    margin-bottom: 10px;
    color: #111;
  }

  .reset-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
  }

  .form-input {
    width: 100%;
    padding: 12px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
  }

  .form-input:focus {
    border-color: #000;
  }

  .form-group .fa-eye {
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: #555;
    font-size: 18px;
    user-select: none;
    transition: all 0.3s ease;
  }

  .form-group .fa-eye:hover {
    color: #000;
  }

  @media (max-width: 576px) {
    .form-group .fa-eye {
      font-size: 16px;
      right: 10px;
    }

    .form-input {
      padding-right: 35px;
    }
  }

  .btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }

  .btn:hover {
    opacity: 0.9;
  }

  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .hidden {
    display: none;
  }

  .alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
  }

  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  .back-link {
    display: inline-block;
    margin-top: 15px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
  }

  .back-link:hover {
    text-decoration: underline;
  }
