body{
    font-family: "Quicksand", sans-serif;
}

.signInGrid{
    display: grid;
    grid-template-columns: 6fr 6fr;
    height: 100vh;
}

.signInLeft{
    padding: 80px 50px;
}

.logoTitle{
    color: #46098C;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.welcomeText{
    margin-bottom: 25px;
}

.welcomeText div:first-child{
    font-size: 18px;
    font-weight: 600;
}

.welcomeText div:last-child{
    font-size: 14px;
    color: #666;
}

.inputContainer{
    margin-bottom: 12px;
}

.inputContainer label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.inputContainer input{
    border: 1px solid #E4E4E4;
    background-color: #FAFAFA;
    border-radius: 6px;
    width: 100%;
    padding: 9px 12px;
    outline: none;
}

.rememberContainer{
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 14px;
}

.rememberContainer a{
    color: #46098C;
    text-decoration: none;
}

.btnSignIn button{
    border: none;
    background-color: #46098C;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
}

.signInRight img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.toggle-eye{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

/* Responsive */

@media screen and (max-width:992px){
    .signInGrid {
        grid-template-columns: 12fr;
    }
    .signInRight{
        display:none;
    }
}

@media screen and (max-width:556px){
    .signInLeft{
        padding: 40px 25px;
    }
}
