.popup__submit_application{
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, .6);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup__submit_application .popup_container{
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	min-height: 100%;
	padding: 20px 0;
	box-sizing: border-box;
}

.popup__submit_application .popup_content{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 480px;
	padding: 80px 0 20px;
	box-sizing: border-box;
	background-color: #431d2f;
	position: relative;
}

.popup__submit_application .popup_container .popup_content .popup_close{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 20px;
	right: 20px;
}

.popup__submit_application .popup_container .popup_content .popup_close img{
	width: 100%;
	height: 100%;
	filter: invert(1);
}



.popup__submit_application .popup_container .popup_content .popup_header{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 55px;
	position: relative;
}

.popup__submit_application .popup_container .popup_content .popup_header::before{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	bottom: -15px;
	left: 0;
}

.popup__submit_application .popup_container .popup_content h2{
	display: inline-flex;
	align-items: center;
	width: fit-content;
	color: #fff;
	font-family: "Montserrat-Bold";
	font-weight: 800;
	font-size: 30px;
	position: relative;
}

.popup__submit_application .popup_container .popup_content h2::before{
	content: "";
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	left: -25px;
}

.popup__submit_application .popup_container .popup_content h2::after{
	content: "";
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	right: -25px;
}



.popup__submit_application .popup_container .popup_content .form{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0 50px;
	box-sizing: border-box;
}


.popup__submit_application .popup_container .popup_content .form .form__inputs{
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.popup__submit_application .popup_container .popup_content .form .form__inputs input{
	all: unset;
	display: block;
	width: 100%;
	color: #000;
	font-family: "Montserrat-Regular";
	font-weight: 800;
	font-size: 15px;
	background-color: #fff;
	border: 3px solid #fff;
	border-radius: 3px;
	padding: 10px;
	box-sizing: border-box;
}

.popup__submit_application .popup_container .popup_content .form .form__inputs input._error{
	border: 3px solid rgb(255, 42, 42);
}


.popup__submit_application .popup_container .popup_content .form button{
	all: unset;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	color: #fff;
	font-family: "Montserrat-Bold";
	font-weight: 800;
	font-size: 15px;
	text-transform: uppercase;
	background-color: #df2d55;
	border-radius: 3px;
	padding: 15px 10px;
	margin-top: 50px;
	box-sizing: border-box;
	cursor: pointer;
	user-select: none;
}


.popup__submit_application .popup_container .popup_content .form p{
	color: #fff;
	font-family: "Montserrat-Regular";
	font-weight: 800;
	font-size: 15px;
	text-align: center;
	margin-top: 15px;
}


.popup__submit_application .popup_container .popup_content .form p.notification{
	color: rgb(255, 42, 42);
}

.popup__submit_application .popup_container .popup_content .form p.notification.successfully{
	color: rgb(5, 255, 5);
}