@import url('https://fonts.googleapis.com/css?family=Kanit&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
}

.login{
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem 0rem 1rem;
    max-width: var(--max-width);
    margin: auto;
} 

.login-form{
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px #00000015;
    padding: 4rem 1rem;
}

.login-logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    
}

.login-logo img{
    width: 150px;
    margin-bottom: 1rem;
}

.login-form form{
    width: 90%;
    max-width: 500px;
}

.login-banner{
    width: 0%;
}

.g-recaptcha>div{
	margin:auto;
}

.input-wrap{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    position: relative;
}

.input-wrap label{
    margin-bottom: 10px;
    font-size: 1rem;
    font-family: 'Kanit', sans-serif;
}

.input-wrap input{
    width: 100%;
    padding: 15px;
    border: 1px solid rgb(214, 214, 214);
    outline: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Kanit', sans-serif;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo img{
    height: 100px;
}

.eye{
    height: 30px;
    position: absolute;
    right: 10px;
    top: 50%;
    color: rgb(162, 162, 162);
}

.eye:hover{
    cursor: pointer;
    color: rgb(0, 0, 0);
}

.login-btn{
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: var(--primary-gradient);
    border-radius: 10px;
    border: none;
    outline: none;
    margin-top: 25px;
    font-size: 1.1rem;
    color: #fff;
}

.login-btn:hover{
    cursor: pointer;
    color: #fff;
}


@media only screen and (max-width:820px) {

    .login-form{
        width: 100% !important;
        background: none;
        box-shadow: none;
    }

    .login-banner{
        display: none !important;
    }

}