html, body{
    height: 100%; width: 100%;
}
.mainArea{
    height: 100%; width: 100%;
    display: flex;
}
.mainArea-left{
    height: 100%; width: 60%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--lite_purple), var(--dark_purple));
    justify-content: center;
    padding: 80px;
    box-sizing: border-box;
}
.mainArea-right{
    height: 100%; width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('/img/tt_doodle.png');
    background-size: 400px;
}
.mainArea-left-logo{
    width: 140px;
    padding: 10px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.mainArea-left-h1{
    font-size: 65px;
    color: white;
    margin-top: 40px;
}
.mainArea-left-p{
    font-size: 20px;
    color: white;
    margin-top: 20px;
    line-height: 33px;
}
.form-carrier{
    display: flex;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px 50px 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.2);
}
.mainArea-right-h2{
    font-size: 30px;
}
form{
    width: 95%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.authInputs{
    height: 65px;
    width: 100%;
    border: 2px solid var(--lineGray);
    padding-left: 10px;
    outline: none;
    font-size: 17px;
    box-sizing: border-box;
}
.authInputs-middle{
    border-radius: 0;
    border-top: none;
}
button{
    height: 65px;
    border: none;
    border-radius: 20px;
    margin-top: 15px;
    font-size: 17px;
    background: linear-gradient(90deg, var(--lite_orange), var(--dark_orange));
    color: white;
    font-weight: bold;
    box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.2);
}
a{
    text-decoration: none;
    color: var(--dark_orange);
}
a:hover{
    text-decoration: underline;
}
#right-logo-mobile{display: none;}

@media screen and (max-width:1080px) {
    .mainArea-left{display: none;}
    .mainArea-right{width: 100%;}
    #right-logo-mobile{display: flex;}
    .form-carrier{width: 80%;}
}