	.feedback-form {
		margin: 50px 0px;
		color: #424242;
	}

	.feedback-form h2 {
		text-align: center;
		color: #424242;
	}

	.form-container {
		display: flex;
		gap: 20px;
		margin-bottom: 20px;
	}

	.left-column {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 17px;
	}

	.right-column {
		flex: 1;
	}

	.form-group {
		display: flex;
		flex-direction: column;
	}

	.feedback-form label {
		margin-bottom: 5px;
		font-weight: bold;
		color: #333;
	}

	.feedback-form input,
	textarea {
		padding: 12px;
		border: 1px solid #C3C3C3 !important;
		border-radius: 10px;
		font-size: 14px;
		transition: border-color 0.3s;
	}

	.feedback-form textarea {
		height: 100%;
		min-height: 107px;
		resize: none !important;
	}

	.agreement {
		text-align: center;
		margin-bottom: 20px;
		color: #424242;
		font-size: 12px;
		line-height: 1.4;
	}


	.submit-btn {
		display: block;
		width: 500px;
		margin: 0 auto;
		padding: 10px 20px;
		background-color: #ffffffff;
		color: #424242;
		border: 1px solid #C3C3C3;
		border-radius: 10px;
		font-size: 16px;
		font-weight: 700;
		cursor: pointer;
		transition: background-color 0.3s;

	}

	.submit-btn:hover {
		background-color: #424242;
		color: #ffffffff;
	}

	@media (max-width: 768px) {
		.feedback-form {
			margin: 10px 0px;
		}

		.form-container {
			flex-direction: column;
		}

		.feedback-form textarea {
			min-height: 100px;
		}

		.left-column {
			gap: 5px;
		}
	}

	@media (max-width: 550px) {
		.form-container {
			gap: 5px;
		}

		.submit-btn {
			width: 250px;

		}
	}

	.feedback-form {
		position: relative;
	}


	.form-messages-container {
		margin-top: 15px;
		min-height: 20px;
	}

	.form-message {
		position: relative;
		margin-top: 15px;
		padding: 15px 40px 15px 15px;
		border-radius: 5px;
		font-size: 14px;
		animation: slideInUp 0.3s ease;
	}

	.form-message.alert-success {
		background-color: #d4edda;
		border: 1px solid #c3e6cb;
		color: #155724;
	}

	.form-message.alert-danger {
		background-color: #f8d7da;
		border: 1px solid #f5c6cb;
		color: #721c24;
	}

	.form-message .close {
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		color: #000;
		opacity: 0.5;
		background: transparent;
		border: 0;
		cursor: pointer;
		padding: 0;
		width: 20px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.form-message .close:hover {
		opacity: 0.75;
	}


	@keyframes slideInUp {
		from {
			opacity: 0;
			transform: translateY(10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}


	.form-group {
		position: relative;
		margin-bottom: 15px;
	}


	.feedback-form input.error,
	.feedback-form textarea.error {
		border-color: #dc3545;
		box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
	}


	.field-error {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		font-size: 11px;
		color: #dc3545;
		padding: 4px 8px;
		border-top: none;
		z-index: 10;
		line-height: 1.3;
		margin-top: 0;
	}


	.feedback-form input,
	.feedback-form textarea {
		position: relative;
		z-index: 2;
		transition: all 0.3s ease;
	}


	.feedback-form textarea {
		min-height: 120px;
		resize: vertical;
	}


	.submit-btn {
		margin-top: 10px;
	}

	.submit-btn:disabled {
		opacity: 0.6;
		cursor: not-allowed;
	}


	@media (max-width: 768px) {
		.field-error {
			font-size: 10px;
			padding: 3px 6px;
		}

		.form-message {
			font-size: 13px;
			padding: 12px 35px 12px 12px;
		}

		.form-message .close {
			right: 8px;
			font-size: 16px;
		}
	}