body {
margin: 0;
padding: 0;

background: #001642;
color: #fff;

font-family: 'Montserrat', sans-serif;
}



h2 {
	font-size: 2rem;
}


a {
	color: #1332dc;
	font-weight: 600;
	text-decoration: none;
}


a:hover {
	text-decoration: underline;
}

.registration_page {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    position: relative;
    background: #fff;
    color: #081452;
}

.registration_banner {
    background-image: url(../assets/reg_bg_new.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 350px;
    width: 100%;
    position: relative;
    border-bottom: 0px solid #1332dc;
	color: #000;
}


.reg_banner_desktop {

}


.reg_banner_mobile {
    display: none;
}

.registration_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 50%;
    height: 100%;
        background: rgbaa(0,0,0,0.8);
    background: linear-gradient(270deg, rgba(0,0,0,0.27503501400560226) 0%, rgba(0,0,0,1) 49%, rgba(0,0,0,1) 100%);
    
    z-index: 1;
	min-width: 600px;
	
}

.banner_content {
    width: 500px;
    padding-left: 60px;
    height: 100%;
    position: absolute;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
	color: #fff;
}



.cycle_title {
    width: 100%;
    font-size: 2.5rem;
}

.bolder {
	font-weight: 500;
}


.banner_logo img {
    max-width: 130px;
    margin-bottom: 20px;
}

.banner_main_title {
    width: 100%;
    font-size: 2.7rem;
    font-weight: 600;
	line-height: 1;
	margin-top: 0px;
	margin-bottom: 10px;
}


.banner_sub_title {
	width: 100%;
	font-size: 2.5rem;
    font-weight: 400;
	line-height: 1;
}



.banner_date {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 0px;
    line-height: 1;
}







.registration_data {
    width: 100%;
	text-align: center;
}


.registration_content {
    width: 100%;
    text-align: center;
    background-image: url(../assets/reg_bg.png);
    background-size: cover;
    padding-bottom: 50px;
    min-height: calc(100vh - 470px);
    display: flex;
    justify-content: center;
    align-items: center;
}



.form_container {
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: transparent;
    padding: 1%;
    margin-top: 20px;
}


.form_container.setpass {
	max-width: 500px;
	text-align: center;
}

form {
	width: 100%;
}


#error-message {
    margin-top: 20px;
    border: 1px solid red;
    padding: 10px;
}


.form_half_width, .form_with_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form input {
    padding: 2%;
    background: rgba(0,22,66,0);
    border: 0px;
    border-radius: 3px;
    margin-bottom: 10px;
   font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.2);
}


::placeholder {
  color: rgba(0,0,0,0.8);
  font-size: 0.9rem;
}



.form_half_width input {
	width: 45%;
}

.form_with_title input {
	width: 35%;
}

.form_full_width input {
    width: 94%;
	padding: 3%;
}

.setpass input {
	text-align: center;
}


input.firstofthree {
	width: 15%;
}

form button, .redirect.btn {
    padding: 10px;
    width: 100%;
    background: #000;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 1);
    color: #fff;
    margin-top: 20px;
    min-height: 50px;
    font-family: 'inherit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    background: #081452;
    color: #fff;
    border: 1px solid #081452;
}

form button:hover, .redirect.btn:hover {

    color: #000;
     background: #F3E32C;
     border: 1px solid #F3E32C;
}




.consents {
	margin-top: 30px;
}








.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
    background: #00041F;
    background: linear-gradient(117deg, rgba(0, 4, 31, 0.98) 0%, rgba(9, 20, 86, 0.98) 100%);
    color: rgba(255,255,255,0.8);
    padding: 20px 50px;
    min-height: 30px;
}

.footer_logo img {
	max-height: 50px;
	max-width: 150px;
}


.footer_emblem img {
	max-height: 50px;
}













/* Customize the label (the container) */


.checkboxes_header {
    margin-top: 20px;
	text-align: left;
}

.multicheckboxes {
    width: 100%;
}

.radio_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



/* Hide the browser's default radio button */
.radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.radio_container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio_container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio_container input:checked ~ .checkmark {
    background-color: #1332dc;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio_container .checkmark:after {
    top: 7px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Customize the label (the container) */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-top: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	text-align: left;
}


.multicheckboxes .checkbox_container {
	 font-size: 0.95rem;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

/* Create a custom checkbox */
.checkbox_container .checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 22px;
    width: 22px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
    background-color: #1332dc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}




.radio_half {
	display: flex;
	flex-wrap: wrap;
}


.radio_half .checkbox_container {

min-width: 100px;
}









textarea {
    width: calc(100% - 30px);
    padding: 15px;
	    border: 1px solid rgba(0,0,0,0.2);
		font-family: 'Montserrat', sans-serif;
}



.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
	z-index: 99999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 99999999999999999;
    font-size: 1rem;
    text-align: left;
    line-height: 1.2;
}

.close {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 40px;
    cursor: pointer;
    background: rgb(7,25,72);
    background: linear-gradient(270deg, rgba(7,25,72,1) 0%, rgba(19,66,134,1) 100%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-content: center;
    padding-top: 10pxz;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
}







@media screen and (max-width: 810px) {

.reg_banner_desktop {
 display: none;
}


.reg_banner_mobile {
    display: initial;
}



}




@media screen and (max-width: 768px) {
	
	
	.registration_banner::before {
		width: 100%;
		min-width: 1px;
	}
	
.banner_content {
    width: calc(100% - 40px);
    padding-left: 40px;
}



.banner_main_title {

    font-size: 2rem;
   
}

	input.firstofthree {
    width: 100%;
}

.form_with_title input {
    width: 100%;
}

.form_half_width input {
    width: 100%;
}

.footer {
	    flex-wrap: wrap-reverse;
		width: calc(100% - 40px);
		padding: 20px 20px;
}


.footer_emblem, .footer_logo {
width: 100%;
text-align: center;	
}
	
}



.registration_page img {
    max-width: 100%;
}