@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kantumruy Pro", sans-serif;
}

body{
    width: 100%;
    height: auto;
    padding: 0.5%;
}

main{
    width: 100%;
    border: 0;
    box-shadow: 0px 0px 5px 1px #80808085;
    border-radius: 8px; 
    padding: 20px 0;
}
header{
    text-align: center;
}
header img{
    width:300px;
}

h3{
    font-size: 1.4rem;
    width: 100%;
    padding-top: 20px;
    border-top: 2px solid #0b4ca8;
}

.title h1{
    background-color: #0b4ca8;
    text-align: center;
    width: 100%;
    font-size: 2rem;
    margin: 20px 0;
    padding: 20px 0;
    color: #fff;
}
.title p{
    padding: 20px;
    font-size: 1rem;
}
.title p span{
    color: red;
    font-weight: 500;
}

.form{
    padding: 0px 20px;
}

.form form{
    border: 0;
    border-radius: 6px;
    box-shadow: 0px 0px 5px 1px #8080805c;
    padding: 1%;
}
form label{
    width: 100px;
    font-size: 14px;
    font-weight: 500;
}
form select,
form input{
    width: 100%;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    background: #f0f0f0b7;
    border: 1px solid #8080805e;
    outline: #0b4ca8;
    margin: 5px 0;
    color: #0b4ca8;
}

.select_compu{
    width: 100%;
    border-bottom: 2px solid #0b4ca8;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.input-room{
    width: 49%;
}
.all-date{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.all-date .date-from,
.all-date .date-to{
    width: 49%;
}

.all-date input{
    text-transform: uppercase;
}

.select_level{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.select_level .select{
    width: 32%;
    margin-bottom: 20px;
}

.new-teacher{
    width: 100%;
    margin: 20px 0;
}
.new-teacher .input-name{
    width: 49%;
}

.unit{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.unit .input{
    width: 24%;
}


.note{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.note .reason{
    width: 49%;
}

textarea{
    width: 100%;
    margin-top: 10px;
    padding: 10px 5px;
    color: #0b4ca8;
    font-size: 14px;
    font-weight: 500;
    outline: #0b4ca8;
}
.btn{
    width: 100%;
}

.btn button{
    width: 100%;
    padding: 10px 0;
    background-color: #1c61c1;
    border: 0;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    font-size:16px;
}

.btn button:hover{
    background-color: #0b4ca8;
}