/* Стили для разрешения от 641px до 1305px */
/*@media (max-width: 1305px) and (min-width: 641px) {*/
	.captcha-block {
		flex-wrap: wrap;
		height: 128px!important;
	}
	.captcha-image{
		height:54px!important;
	}
	input[name="captcha_word"] {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
		flex: none;
	}
/*}*/

/* Добавляем специфичные стили ТОЛЬКО для разрешения 1305px и ниже */
@media (max-width: 1305px) {
	.captcha-block {
		flex-wrap: wrap;
	}
	input[name="captcha_word"] {
		margin-left: 0 !important;
		width: 100%;
		flex: none;
		margin-top: 10px;
	}
}

/* Стили для разрешения до 640px */
@media (max-width: 640px) {
	.captcha-block {
		flex-wrap: wrap;
		height: auto !important; /* Добавляем авто высоту */
		min-height: 64px; /* Минимальная высота для контейнера */
	}
	.captcha-image {
		height: 54px !important;
	}
	input[name="captcha_word"] {
		margin-left: 0 !important;
		margin-top: 10px;
		width: 100%;
		flex: none;
	}
}

/* Стили для разрешения до 488px */
@media (max-width: 488px) {
	.captcha-block {
		flex-wrap: wrap;
		height: auto !important;
		min-height: 64px; /* Обеспечиваем достаточно места */
	}
	.captcha-image{
		height:54px!important;
	}
	input[name="captcha_word"] {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
		flex: none;
	}
}