.login {
    position: relative; /* This ensures that the dropdown content is positioned relative to this container */
  }
.login-field {
    margin-bottom:18px;
    width: 360px;
    max-width:278px;
    height: 70px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    border: 1.5px solid white;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding: 0 60px 0 24px;
    color:var(--color-white);
    font-size: 12px;
    line-height: 20px;
    
  }

  .login-field::placeholder {
    color:var(--color-white);
  } 

  .brand{
      opacity:0.8;
  }
  .login-content{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }
  .main-header-login{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px;

    
  }
  .login-btn-container{
    margin-top:54px;
    display:flex;
    justify-content: center;
  }
  .login{
    width:192px;

    height:148.5px;
    background-image: url('/img/login_icon.png');
    background-size:192px;
    background-repeat: no-repeat;
  }
  .main-body-login{
    background-image: radial-gradient(100.00% 69.85% at 100% 34.92%, rgba(255, 255, 255, 0) 0%, rgba(53, 25, 0, 0) 0%, rgba(53, 25, 0, 0.10) 64%, rgba(53.07, 25.30, 0, 0.22) 82%, rgba(53.12, 25.50, 0, 0.28) 86%, rgba(53.12, 25.50, 0, 0.30) 100%),
    url('/img/theme-1.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;

    width: 100%; /* Full width of the parent container */
    height: 100vh; /* Full height of the viewport, or adjust as needed */
    background-position: center; /* Center the image in the container */
    overflow: hidden;
    display:flex;
    flex-direction: column;
    justify-content: center;
    
  }
  .password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 24px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-90%);
    cursor: pointer;
    background-image: url('/img/pw_icon.png');
    background-size: cover;
    width: 24px; /* Adjust as needed */
    height: 24px; /* Adjust as needed */
}


  .main-btn {

    min-width: 100%;
  }
  /* Active state for the dropdown field */
  .login-field.active {
    background-color:white;  /* Change background color when active */
    color: var(--color-accent); /* Change text color when active */
      /* Style for the input title */

  }
  
@media screen and (max-width: 480px) { 
    .login-container {
        width: 85%;
    }
    .login-field{
        width: calc(100% - 84px);
        max-width: unset;
    }
}

