*{
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: Salsa;
    src: url('../chmmk/font/Salsa-Regular.ttf');
}
@font-face {
    font-family: Nihar;
    src: url('../chmmk/font/Li\ Manowar\ Nihar\ Unicode.ttf');
}
.result_body{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
form{
    width: 600px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* background: linear-gradient(rgba(255, 255, 255,0.5),rgba(255, 255, 255,0.5)); */
    background-color: white;
    border-radius: 10px;
    padding: 20px 0px;
}
.head_pad{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding: 10px;
}
.logo img{
    width: 115px;
}
.institute_name_a{
    font-size: 32px;
    font-weight: bold;
}
.institute_name_b{
    font-family: Nihar;
    font-size: 27px;
}
.institute_name_e{
    font-family: Salsa;
    font-size: 18px;
}
.forms{
    width: 90%;
    margin: 0 auto;
    border: 1px solid black;
    padding: 10px;
}
.input_group{
 padding: 9px 15px;
 display: grid;
 grid-template-columns: 35% 65%;
 align-items: center;
}
label{
    font-size: 20px;
    font-family: Salsa;
    margin-bottom: 5px;
    position: relative;
}
.clone{
    position: absolute;
    left: 87%;
}
input{
    height: 40px;
    padding: 0px 20px;
}
select{
    width: 100%;
    height: 40px;
    padding: 0px 20px;
    /* background-color: transparent; */
    /* border: none;
    border-bottom: 1px dashed black; */
}
#show_result{
    width: 100%;
    background-color: #00a651;
    border: none;
    color: white;
    font-size: 25px;
    border-radius: 8px;
    font-family: Salsa;
    transition: all .5s ease-in-out;
    margin-top: 10px;
    display: block;
}
#show_result:hover{
   background-color: #105732;
}
.error{
    font-size: 14px;
    color: red;
}
.input_error{
    border: 1px solid red;
}
#s_r{
    display: block;
}
@media(max-width: 620px){
    form{
        width: 400px;
    }
    .logo img{
        width: 75px;
    }
    .institute_name_a{
        font-size: 21px;
    }
    .institute_name_b{
        font-size: 18px;
    }
    .institute_name_e{
        font-size: 12px;
    }
    label{
        font-size: 13px;
    }
    input{
        height: 29px;
    }
    select{
        height: 30px;
    }
    #show_result{
        height: 42px !important;
    }

}
@media(max-width: 420px){
    form{
        zoom: 86%;
    }
}
@media(max-width: 365px){
    form{
        zoom: 75%;
    }
}