body{
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    flex-direction: column;
	background: #efefef;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}
.form_login{
    display: flex;
    flex-direction: column;
	width: 75%;
}
.form_login>input{
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: 17px;
    text-align: center;
    outline: none;
    border: 1px solid #aeaeae;
    border-radius: 5px;
    transition: 0.3s;
    margin-bottom: 10px;
}
.form_login>button {
    background: #4598ff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 30px;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    outline: none;
}
.form_login>button:hover {
    background: #2486ff;
}
.form_login>input:focus {
    border: 1px solid blue;
}
.g-recaptcha{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.main {
    background: #fff;
    width: 70%;
    padding: 150px 50px;
    box-sizing: border-box;
    border-radius: 25px;
    display: flex;
    justify-content: center;
}
.check_form {
    width: fit-content;
}
.type_check {
    display: flex;
    justify-content: center;
}
.tabs.active {
    background: blue!important;
    cursor: default;
}
.tabs {
    background: #4598ff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    margin: 0 15px;
    min-width: 130px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.tabs:hover,.button_send:hover {
    background: #2486ff;
}
.form_block{
    display: none;
    flex-direction: column;
    align-items: center;
}
.form_block.active{
	display: flex;
}
.form_block>h3{
    font-size: 35px;
    color: #000070;
    cursor: default;
	text-align: center;
}
.box_input {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #aeaeae;
    font-size: 20px;
}
.input_title {
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: default;
}
.box_input input {
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: 17px;
    width: 55%;
    text-align: right;
    outline: none;
    border: 1px solid #aeaeae;
    border-radius: 5px;
    transition: 0.3s;
}
.box_input input[type=file] {
    width: 70%;
}
.box_input input:focus {
    border: 1px solid blue;
}
.button_send {
    background: #4598ff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    margin: 0 15px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 30px;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
}
.box_radio_elements {
    font-size: 15px;
}
.radio_element:nth-child(1) {
    margin-bottom: 10px;
}
.radio_element {
    display: flex;
    justify-content: space-between;
}
.radio_element input {
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}
.radio_element label {
    cursor: pointer;
	white-space: nowrap;
}
.message_ajax {
    padding: 30px 0 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
}

@media(max-width: 450px){
	.main {
		width: 95%;
		padding: 70px 30px;
	}
	.form_block>h3 {
		font-size: 26px;
	}
	.box_input {
		font-size: 16px;
	}
	.box_input input {
		font-size: 14px;
	}
	.box_radio_elements {
		font-size: 13px;
	}
}