
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: #f5f7fa;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .login-container {
      width: 380px;
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
      text-align: center;
    }

    h2 {
      margin-bottom: 25px;
      font-size: 26px;
      font-weight: 600;
      color: #111;
    }

    label {
      display: block;
      text-align: left;
      margin-bottom: 5px;
      font-size: 14px;
      font-weight: 500;
      color: #333;
    }

    input[type="email"],
    input[type="password"] {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      margin-bottom: 15px;
      font-size: 14px;
    }

    /* FIXED REMEMBER SECTION */
    .remember-forgot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      font-size: 13px;
    }

    .remember-left {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .remember-forgot a {
      color: #0d5cf5;
      text-decoration: none;
      font-size: 13px;
    }

    .remember-forgot a:hover {
      text-decoration: underline;
    }

    .btn-primary {
      width: 100%;
      padding: 12px;
      background: #0d5cf5;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 5px;
    }

    .btn-primary:hover {
      background: #0843b8;
    }

    .divider {
      margin: 25px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #777;
      font-size: 13px;
    }

    .divider:before,
    .divider:after {
      content: "";
      flex: 1;
      height: 1px;
      background: #ddd;
    }

.input-box {
      width: 100%;
      margin-bottom: 15px;
      position: relative;
    }

    .input-box input {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      transition: 0.2s;
    }

    .input-box input:focus {
      border-color: #2563eb;
      box-shadow: 0 0 4px rgba(37, 99, 235, 0.4);
    }

    .eye-icon {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      font-size: 18px;
      color: #777;
    }
.error-text {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  text-align: left;
}




    /* GOOGLE BUTTON */
    .google-btn {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .google-btn img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }

    .signup-link {
      margin-top: 20px;
      font-size: 14px;
      color: #333;
    }

    .signup-link a {
      color: #0d5cf5;
      text-decoration: none;
      font-weight: 600;
    }

    .signup-link a:hover {
      text-decoration: underline;
    }

