

  /* ===== General Layout ===== */
  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f5f6fa;
  }

  .login-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0;
  }

  .login-card {
    background: #fff;
    width: 360px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .login-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
  }

  /* ===== Input Boxes ===== */
  .input-box {
    position: relative;
    margin-bottom: 25px;
  }

  .input-box input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s;
  }

  .input-box input:focus {
    border-bottom-color: #7f00ff;
  }

  /* ===== Icons in Inputs ===== */
  .input-icon {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #888;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.7;
  }

  .input-box.filled .input-icon {
    transform: translateX(-10px);
    opacity: 0;
  }

  /* ===== Eye Icon for Password ===== */
  .toggle-password {
    position: absolute;
    top: 12px;
    right: 10px;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
  }

  .toggle-password:hover {
    color: #7f00ff;
  }

  /* ===== Forgot Password ===== */
  .forgot {
    text-align: right;
    margin-bottom: 25px;
  }

  .forgot a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
  }

  .forgot a:hover {
    text-decoration: underline;
  }

  /* ===== Login Button ===== */
  .login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #b53ac0, #ffe46a);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s ease;
  }

  .login-btn:hover {
    opacity: 0.9;
  }

  /* ===== Divider ===== */
  .divider {
    margin: 20px 0 15px;
    font-size: 14px;
    color: #555;
  }

  /* ===== Social Buttons ===== */
  .social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .social-login a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s;
  }

  .social-login a.fb {
    background: #3b5998;
  }
  .social-login a.tw {
    background: #55acee;
  }
  .social-login a.gg {
    background: #dd4b39;
  }

  .social-login a:hover {
    transform: translateY(-4px);
  }

  /* ===== Sign Up Link ===== */
  .signup-link {
    font-size: 14px;
    color: #555;
  }

  .signup-link a {
    text-decoration: none;
    font-weight: 600;
    color: #7f00ff;
  }

  .signup-link a:hover {
    text-decoration: underline;
  }

  /* ===== Responsive ===== */
  @media (max-width: 420px) {
    .login-card {
      width: 90%;
      padding: 30px 20px;
    }
  }
  
  .hamburger {
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}
.hamburger div {
  width:28px;
  height:3px;
  background:#7b63e6;
  transition:0.3s;
}

