.wrapper {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
}

.form_wrapper {
    padding: 120px 20px;
	background-image: url('static/media/second_banner_bg.jpg');
	background-position: center;
	background-size: cover;
}

.form_wrapper h3 {
    margin-bottom: 40px;
}

.form_wrapper .registration-form {
    max-width: 570px;
    margin-right: 0;
    margin-left: auto;
}

form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

input,
select,
.select2 {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    padding: 14.5px 20px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #000;
    text-align: right;
}

.select2-selection,
.select2,
.selection {
    display: flex !important;
    align-items: center !important;
    justify-content: start !important;
    width: 100% !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.select2 {
    width: calc(50% - 20px) !important;
    height: 50px !important;
    margin: 0 10px 20px !important;
}

.select2-selection {
    position: relative !important;
    padding: 14.5px 20px !important;
    border: unset !important;
}

.select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 10px !important;
}

.select2-results__option {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.select2-selection__rendered {
    padding: 0 !important;
}

#ErrorText {
    width: 100%;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (max-width: 1200px) {
    .form_wrapper {
        padding: 60px 20px;
    }

    .form_wrapper h3 {
        margin-bottom: 40px;
    }

    #ErrorText {
        margin-right: 0;
    }
}

@media screen and (max-width: 660px) {
    form {
        flex-direction: column;
        margin: 0;
    }
    
    input,
    select,
    .select2 {
        width: 100% !important;
        margin: 0 0 20px !important;
    }
}

footer {
	padding: 30px 20px;
	background-color: #000;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copy {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #BEBEC2;
}

@media screen and (max-width: 1200px) {
    footer .copy {
        display: block;
        margin-top: 20px;
    }

    footer .wrapper {
        flex-direction: column-reverse;
        justify-content: center;
    }
}

.thank_body {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.thank_body h1 {
    color: #FBDD01;
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.thank_body h2 {
    color: #fff;
    font-size: 24px;
    display: block;
    text-align: center;
    line-height: 29px;
}