* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: TTSupermolotNeue;
    src: url("../fonts/TTSupermolotNeue-Medium.woff") format("truetype-variations");
}

body {
    background: #282e35;
}

.container {
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

img {
    width: 100%;
    height: 100%;
}

@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        width: 960px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .container {
        width: 720px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .container {
        width: 540px;
    }
}

#registration_form .header_logo {
    width: 270px;
    height: 70px;
    margin: 35px auto 25px auto;
}

.form_body {
    background: #fff;
    padding: 70px;
}

.form_body .title h1 {
    font-family: TTSupermolotNeue, sans-serif;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0px 60px 0px;
}

.form_body form {
    width: 50%;
    margin: 0 auto;
}

.form_body form label {
    font-family: TTSupermolotNeue, sans-serif;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 1px;
    font-weight: 400;
    width: 100%;
    display: block;
}

.form_body form div,
.form_body form select {
    width: 100%;
}

.form_body form input[type="text"],
.form_body form input[type="email"],
.form_body form input[type="file"],
.form_body form select {
    border: 2px solid #282e35;
    padding: 13px;
    border-radius: 25px 0px;
    margin-bottom: 15px;
}

.form_body form input[type="text"],
.form_body form input[type="email"],
.form_body form input[type="file"] {
    width: 95%;
}

.form_body form .designation {
    position: relative;
}

.form_body form .designation:after {
    content: '';
    position: absolute;
    top: 50px;
    right: 6px;
    width: 25px;
    height: 25px;
    background: white;
    font-size: 25px;
    font-weight: 900;
}

.form_body form button[type="submit"] {
    border: 2px solid #282e35;
    padding: 15px 45px;
    border-radius: 0px 25px;
    background: #282e35;
    margin-top: 20px;
    font-family: TTSupermolotNeue, sans-serif;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
}

.form_body form .designation svg {
    width: 13px;
    height: 13px;
    position: absolute;
    bottom: 31px;
    right: 15px;
    z-index: 2;
}

.copyright_footer ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 60px 0px;
}

.copyright_footer ul li {
    width: 40px;
    height: 40px;
}
.form_body select option{
    font-family: TTSupermolotNeue, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 5px 0px !important;
    font-weight: 400;
    background: #282e35 !important;
    color: #fff;
}

@media screen and (max-width: 767px){
    .form_body{
        padding: 60px 60px 60px 50px;
    }
    .form_body form{
        width: 100%;
    }
}
@media screen and (max-width: 480px){
    .form_body form input[type="text"], .form_body form input[type="email"], .form_body form input[type="file"] {
        width: 90%;
    }
    .form_body{
        padding: 30px;
    }
}


