.box-login {
    display: flex;
    box-sizing: border-box;
    position: absolute;
    width: 40%;
    height: 60%;
    background: rgba(0, 0, 0, 0.2);
    /* border: 2px solid #FFFFFF; */
    backdrop-filter: blur(10px);
    border-radius: 32px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    max-width: 500px;
    max-height: 450px;
    min-width: 350px;
    min-height: 300px;
}

.box-login-light {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #FFFFFF;
    backdrop-filter: blur(5px);
}

.switch-display {
    position: absolute;
    top: 8px;
    left: 8px;
}


body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100vh;
    background-image: url("/img/codestarBG.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Noto Sans';
}

.body-light {
    background-image: url("/img/codestarBG2.png");
}

#idLogo {
    height: 120px;
}

.box-input {
    max-width: 80%;
}

.field-input {
    background: #D9D9D9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.field-input-light {
    background: rgba(255, 255, 255, 0.3);
}

.box-input-font {
    font-size: 1em;
    border-radius: 12px;
}

.login-button {
    background-color: #007af7;
}

.button-none {
    outline: none;
    border: none;
    background: none;
}

.forgot-password-link {
    color: #007af7;
    &:hover {
        text-decoration: underline;
    }
}
