.modal_shadow{
	width: 100%;
	height: 100%;
	position: fixed;
	display: block;
	top: 0px;
	z-index: 99999999;
	padding-top: 5%;
	text-align: center;
	background: rgba(0,0,0, 0.5);
}
	.modal_box{
		max-width: 40%;
		min-width: 1%;
		display: inline-block;
		background: white;
		border-radius: 2px;
		margin: 0 auto;
		padding: 3em;
		text-align: center;
		box-shadow: 3px 3px 10px #333;
	}
	.modal_close{
		width: 23px;
		height: 23px;
		display: inline-block;
		margin: -25px -25px 5px 10px;
		float: right;
		font: bolder 15px 'Arial';
		color: white;
		background: black;
		border-radius: 50%;
		padding: 3px;
		cursor: pointer;
		text-align: center;
		vertical-align: middle;
	}
		.modal_close:hover{
			background: red;
		}
		







.feedback-form {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,90,168,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.form-title {
    color: #005AA8;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e3e9ef;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3a4a;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.megaform_send_btn {
    background: linear-gradient(135deg, #005AA8 0%, #0085D0 100%);
    width: 100% !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .feedback-form {
        padding: 20px;
        margin: 10px;
        border-radius: 12px;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .form-input {
        padding: 10px 14px;
        font-size: 15px;
    }

    .megaform_send_btn {
        font-size: 15px !important;
        padding: 12px 18px !important;
    }

    textarea.form-input {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .feedback-form {
        padding: 15px;
    }

    .form-title {
        font-size: 18px;
    }

    .form-input {
        font-size: 14px;
        padding: 8px 12px;
    }

    .megaform_send_btn {
        font-size: 14px !important;
        padding: 10px 16px !important;
    }
}

.form-input:focus {
    border-color: #005AA8;
    box-shadow: 0 0 8px rgba(0,90,168,0.2);
    outline: none;
}

.form-input::placeholder {
    color: #7f8fa4;
    opacity: 1;
    font-size: 0.95em;
}

textarea.form-input {
    height: 100px;
    resize: vertical;
    min-height: 80px;
}

.finalText {
    color: #005AA8;
    font-weight: 500;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    background: #f0f8ff;
    display: none;
    font-size: 14px;
}