@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body.login{
    display: flex;
    flex-direction: row;
}

body.login > div.image, body.login > div.form{
    height: 100%;
}

*{
    font-family: 'Poppins';
}

input{
    color: white;
}

input[type="date"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

p.information{
    font-size: 13px;
    color: #747474;
    margin: 0;
}

body.login > div.image{
    width: 66%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../images/animeglobe_login.png');
    min-width: 380px;
}

body.login > div.image > div.cover{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
}

body.login > div.image > div.cover > img{
    height: 124px;
    position: absolute;
    left: 40px;
    bottom: 20px;
}


body.login > div.form{
    width: 34%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.login > div.form > form{
    width: 80%;
    height: 90%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    position: relative;
}

body.login > div.form > img{
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 80px;
    display: none;
}

body.login > div.form > form > div.title{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

body.login > div.form > form > div.title > h1{
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    margin: 0;
    text-align: left;
}

body.login > div.form > form > div.title > p{
    color: #808185;
    font-size: 18px;
}

body.login > div.form > form > div.inputs{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

body.login > div.form > form > div.inputs > input{
    font-size: 16px;
    padding: 14px 20px;
    border: 0;
    border-radius: 16px;
    background-color: #3B3741;
}

body.login > div.form > form > div.inputs > div.birth-date{
    display: flex;
    flex-direction: row;
    gap: 8px;
}

body.login > div.form > form > div.inputs > div.birth-date > input{
    width: calc((100%/3) - 20px);
    font-size: 16px;
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background-color: #3B3741;
}

body.login > div.form > form > div.inputs > a{
    font-size: 14px;
    margin-left: 4px;
    text-decoration: underline;
    color: #dfe1e9;
}

body.login > div.form > form > div.inputs > a:hover{
    color: #ffffff;
}

body.login > div.form > form > div.options{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: -30px;
}

body.login > div.form > form > div.options > div.login > button{
    width: 160px;
    height: 60px;
    background-color: var(--button-red);
    border-radius: 18px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

body.login > div.form > form > div.options > div.register{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: right;
}

body.login > div.form > form > div.options > div.register > p{
    margin: 0;
    color: #dfe1e9;
}

body.login > div.form > form > div.options > div.register > a{
    text-decoration: underline;
    color: #c5c7ce;
    font-size: 14px;
}

body.login > div.form > form > div.options > div.register > a:hover{
    color: #ffffff;
}

@media only screen and (max-width: 1330px){
    body.login > div.image{
        width: 20%;
    }

    body.login > div.form{
        width: 80%;
    }

    body.login > div.image > div.cover > img{
        height: 80px;
    }
}

@media only screen and (max-width: 830px){
    body.login > div.image{
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
    }

    body.login > div.image > div.cover > img{
        display: none;
    }

    body.login > div.form{
        width: 100%;
        z-index: 9;
        background-color: rgba(0, 0, 0, 0.8);
    }

    body.login > div.form > form{
        gap: 0px;
        justify-content: space-evenly;
    }

    body.login > div.form > img{
        display: block;
    }

    body.login > div.form > form > div.title > h1{
        font-size: 52px;
    }

    body.login > div.form > form > div.options{
        margin-top: -10px;
        flex-direction: column;
        gap: 10px;
    }
    
    body.login > div.form > form > div.options > div.login > button{
        width: 100%;
    }

    body.login > div.form > form > div.options > div.register > p{
        font-size: 14px;
    }
}