@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
    background-color: #f4f4f4; 
    font-family: "Inter", serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center; 
    flex-direction: column;
    align-items: center;
    min-height: 100vh; 
    margin: 0;
}

.container .text_content{
    text-align: center;
    width: 740px;
}

.text_content .title{
    font-size: 35px;
    margin: 15px 0px;
    letter-spacing: .8px;
    color: #1967D2;
}

.text_content .texts{
   text-align: justify;
   font-size: 12.5px;
   background: #fff;
   padding: 15px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.034);
   border-radius: 5px;
   line-height: 1.5;
   letter-spacing: .6px;
}

.text_content i{
    margin-right: 3px;
   font-size: 16px;
}

form {
    background: #fff;
    margin-top: 10px;
    padding: 30px;
    padding-top: 5px;
    padding-right: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: auto;
}

form .title{
    font-size: 20px;
    color: #1967D2;
}

.content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0px;
}

form label{
    font-size: 14px;
}

form #fullname, #date, #passport_id, #district, #specialty, #study_mode, #photo, textarea{
    outline: none;
    border: 1px solid #0000007c;
    font-family: "Inter", serif;
    padding: 6px 10px;
    width: 100%;
    margin-top: 3px;
    font-size: 14px;
    border-radius: 5px;
    resize: vertical;
}

form #study_mode{
    width: 108%;
}

form #specialty{
    width: 104%;
}

form #school{
    border: 1px solid #0000007c;
    font-family: "Inter", serif;
    padding: 6px 10px;
    margin-top: 3px;
    font-size: 15px;
    border-radius: 5px;
    outline: none;
    width: 10%;
}

form #fullname:focus, #date:focus, #passport_id:focus, #school:focus, textarea:focus{
    border: 1px solid #1967D2;
}

form .custom_input{
    border: 1px solid #0000007c;
    padding: 6px 10px;
    width: 93%;
    margin-top: 3px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

form .custom_input.focus{
    border: 1px solid #1967D2;
}

.custom_input #category{
    background: transparent;
    font-family: "Inter", serif;
    font-size: 15px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.custom_input input{
    width: 70%;
    font-size: 15px;
    border: none;
    background: transparent;
    outline: none;
    font-family: "Inter", serif;
    margin: 0;
}

form textarea{
    height: 100px;
}

input[type="submit"], input[type="button"]{
    padding: 10px 30px;
    margin-top: 8px;
    cursor: pointer;
    background: #1967D2;
    color: #fff;
    font-size: 14px;
    font-family: "Inter", serif;
    border: none;
    border-radius: 5px;
}

.container .popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000000be;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup .box{
    text-align: center;
    background: #fff;
    padding: 15px 30px;
    border-radius: 10px;
}

.video{
    margin-bottom: 20px;
}

.video iframe{
    width: 725px; 
    height: 335px;
}

.contact{
    margin: 20px 0px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    width: 700px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.034);
    font-size: 14px;
}

footer{
    text-align: center;
    background: #fff;
    font-size: 15px;
    margin: 0;
    padding: 20px 0px;
}

