body {
    height: 100dvh;
    background-color: var(--login-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}


#container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-height: 90dvh;
    width: 95dvw;
    background-color: var(--login-container-color);
    border-radius: 20px;
    justify-content: space-around;
}

.login-forms {
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.brand-logo {
    top: 0;
    background-color: var(--login-background-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: var(--login-title-color);
    font-weight: 400;
    font-size: 25px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 7%;
    border-radius: 0px 0px 10px 10px;
}

    .brand-logo img {
        width: 80%;
        justify-self: center;
    }

.login-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 14px 14px 51.1px 12px rgba(0, 0, 0, 0.25);
    background-color: white;
    min-height: 50%;
    max-height: 65%;
    width: 75%;
    align-self: center;
}

    .login-container h2 {
        font-weight: 700;
        font-family: var(--kadwa);
    }

    .login-container .inputgroup {
        min-width: 100%;
        display: flex;
        align-items: center;
        margin: 10px;
        border: 1px solid #000000;
        padding: 5px 0;
    }

        .login-container .inputgroup label {
            display: inline-block;
            margin-inline: 10px;
            width: 30px;
        }

        .login-container .inputgroup input {
            width: 100%;
            padding: 10px;
            border: none;
            outline: none;
            font-size: 16px;
            border-left: 1px solid #00000069;
        }

        .login-container .inputgroup .bi {
            border: none;
            background-color: transparent;
            color: var(--login-background-color);
            transition: all ease 0.3s;
            padding: 5px;
        }

            .login-container .inputgroup .bi:hover {
                color: var(--secondary-color);
            }

.remember {
    display: flex;
    align-items: center;
}

    .remember input {
        margin-right: 10px;
    }

    .remember label {
        font-weight: 700;
    }

    .remember span {
        font-weight: 700;
    }

.login-btn {
    width: 100%;
    padding: 15px;
    background-color: #0094FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all ease 0.1s;
    margin-top: 10%;
    font-weight: 700;
    box-shadow: 0px 0px 10.1px 5px rgba(0, 148, 255, 0.45);
}

    .login-btn:hover {
        background-color: #0056b3;
    }

.ilustration {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    width: 34%;
    background-color: var(--login-background-color);
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

    .ilustration .brand-icon {
        max-width: 40%;
    }

    .ilustration .beeping-man {
        max-width: 70%;
    }

.checkbox.no-display {
    display: none;
}

.slider {
    scale: 0.7;
    width: 60px;
    height: 30px;
    background-color: lightgray;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 4px solid transparent;
    transition: .3s;
    box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
    cursor: pointer;
}

    .slider::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transform: translateX(-30px);
        border-radius: 20px;
        transition: .3s;
        box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
    }

.checkbox.no-display:checked ~ .slider::before {
    transform: translateX(30px);
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.checkbox.no-display:checked ~ .slider {
    background-color: #0ED546;
}

.checkbox.no-display:active ~ .slider::before {
    transform: translate(0);
}

@media(width < 1120px) {
    .ilustration {
        display: none;
    }

    .login-forms {
        width: 90%;
    }

    .login-container {
        justify-content: start;
        max-height: 70%;
        min-height: 50%;
        width: 95%;
        font-size: 30px;
    }

    .brand-logo {
        margin-bottom: 40%;
    }

    .remember {
        margin-top: 5%;
    }

    .slider {
        margin-left: 50px;
        scale: 2;
    }

    .login-btn {
        height: 30%;
        font-size: 50px;
        margin-top: 20%;
    }

    .login-container h2 {
        font-size: 50px;
        margin-bottom: 5%;
    }

    .login-container .inputgroup {
        min-height: 25%;
        margin-top: 5%;
    }

        .login-container .inputgroup label {
            scale: 1.5;
            width: 50px;
            margin-left: 25px;
        }

        .login-container .inputgroup input {
            font-size: 30px;
        }

        .login-container .inputgroup .bi {
            scale: 1.5;
            margin-right: 10px;
        }
}
