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

  body {
    background: url('../media/bg-login.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .login-container {
    padding: 40px;
    border-radius: 10px;
    margin-left: 100px;
    width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  p {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
  }

  .input-group {
    margin-bottom: 20px;
  }

  .input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .input-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #fef3a3;
    font-size: 16px;
  }

  .input-group-password {
    position: relative;
  }

  .show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-weight: bold;
  }

  .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
  }

  .options input {
    margin-right: 5px;
  }

  .login-btn {
    background: linear-gradient(to right, #ff7a00, #ff4500);
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }

  .login-btn:hover {
    opacity: 0.9;
  }

  /* input */
  .input-field {
    /* max-width: 380px; */
    width: 100%;
    background-color: #fef3a3;
    margin: 10px 0;
    height: 50px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
  }
  
  .input-field i {
    text-align: center;
    line-height: 55px;
    color:rgb(118, 118, 118);
    transition: 0.5s;
    font-size: 1.1rem;
  }
  
  .input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
  }
  
  .input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
  }

  
  .title {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 20px;
  }

  @media (max-width: 1024px) {
    .login-container {
      margin-left: 50px;
      width: 400px;
      padding: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .login-container {
      margin-left: 20px;
      width: 90%;
      padding: 25px;
    }
  }
  
  @media (max-width: 480px) {
    .login-container {
      margin: 0 auto;
      width: 100%;
      padding: 20px;
      border-radius: 0;
      box-shadow: none;
    }
  }
  