.captcha-block {
	height: 54px;
	display: flex;
	align-items: center;
}

.captcha-image {
	height: 100%;
	flex-shrink: 0;
}

.captcha-image img {
	height: 100%;
	width: auto;
	display: block;
}

input[name="captcha_word"] {
	margin-left: 20px;
	flex: 1;
}


/* Стили для разрешения от 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;
	}
}
@media (max-width: 1680px) and (min-width: 1621px) {
    .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;
    }
}

/* Стили для разрешения до 640px */
@media (max-width: 640px) {
	/* Здесь оставляем текущие стили (от 489px до 640px) */
}

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