
@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@100;200;300;400;500;600;700&display=swap');
* {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--grey: #F1F0F6;
}
body{
	background-color: var(--grey);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.div-main{
    width: 400px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}
.div-main > font{
    font-family: "Anuphan";
}
.div-main > font.l1{
    font-size: 16px;
    font-weight: 500;
}
.div-main > font.l2{
    font-size: 16px;
    font-weight: 400;
    margin-top: 2px;
    margin-bottom: 10px;
}
.logotitle{
    display: flex;
    flex-direction: row;
    margin-bottom: -15px;
}
.logotitle > img{
    height: 40px;
    width: auto;
    margin-bottom: 10px;
    margin-right: 5px;
    margin-top: 2px;
}
.title{
    display: flex;
    flex-direction: column;
}
.div-main > button{
    font-family: "Anuphan";
    font-weight: 500;
}
.div-main > font.copy{
    font-size: 14px;
    font-weight: 300;
    margin-top: 10px;
}
.div-main > div > input{
    font-family: "Anuphan";
}
.modal-title{
    font-family: "Anuphan";
}
.font-anuphan{
    font-family: "Anuphan";
    font-weight: 500;
}
.fs-15{
    font-size: 15px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
    font-size: 18px;
}
.modal-inline{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.modal-inline > div{
    width: 49%;
}
.modal-inline .nosit{
    width: 150px;
}
.modal-inline .learntype{
    width: 100%;
    margin-left: 5px;
}
.modal-inline .learntype-2{
    width: 100%;
    margin-right: 5px;
}
.nav-item{
    cursor: pointer;
}








@media screen and (max-width: 530px) {
    .div-main{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 50px;
        background-color: unset;
        box-shadow: unset;
        border-radius: unset;
    }
}