/* Odstoupení od smlouvy – formulář. Paleta i typografie dle motivu Lavello. */

.lv-odstoupeni {
	max-width: 720px;
	margin: 0 auto;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.lv-odstoupeni *,
.lv-odstoupeni *::before,
.lv-odstoupeni *::after {
	box-sizing: border-box;
}

.lv-odstoupeni__field,
.lv-odstoupeni__consent,
.lv-odstoupeni__submit {
	margin: 0 0 18px;
}

.lv-odstoupeni__field label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold;
	color: #0c1824;
}

.lv-odstoupeni__field input,
.lv-odstoupeni__field textarea {
	display: block;
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #c9d4db;
	border-radius: 3px;
	font: inherit;
	color: #0a0a0a;
	background-color: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lv-odstoupeni__field textarea {
	resize: vertical;
	min-height: 90px;
}

.lv-odstoupeni__field input:focus,
.lv-odstoupeni__field textarea:focus {
	outline: none;
	border-color: #2dcbd1;
	box-shadow: 0 0 0 3px rgba(45, 203, 209, 0.18);
}

.lv-odstoupeni__req {
	color: #d8000c;
}

/* Souhlas (checkbox) */
.lv-odstoupeni__consent > label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	color: #0c1824;
	line-height: 1.4;
}

.lv-odstoupeni__consent input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

/* Chybové stavy */
.lv-odstoupeni__error {
	display: none;
	margin-top: 5px;
	font-size: 13px;
	color: #d8000c;
}

.has-error .lv-odstoupeni__error {
	display: block;
}

.has-error input,
.has-error textarea {
	border-color: #d8000c;
}

/* Souhrnné hlášky */
.lv-odstoupeni__messages {
	display: none;
	margin: 0 0 20px;
	padding: 14px 18px;
	border-radius: 3px;
	font-size: 14px;
	line-height: 1.5;
}

.lv-odstoupeni__messages.is-error {
	display: block;
	background-color: #fdecea;
	border: 1px solid #f5c2bc;
	color: #a3160f;
}

.lv-odstoupeni__messages.is-success {
	display: block;
	background-color: #e3f6f8;
	border: 1px solid #9fe3e7;
	color: #0c1824;
}

/* Tlačítko – navazuje na .btn z motivu, jen zajistí pohodlnou velikost */
.lv-odstoupeni__btn {
	max-width: none;
	padding: 12px 28px;
	cursor: pointer;
}

.lv-odstoupeni__btn[disabled] {
	opacity: 0.6;
	cursor: default;
}

.lv-odstoupeni__noscript {
	margin-top: 12px;
	font-size: 14px;
	color: #a3160f;
}

/* Honeypot – skryté pole proti spamu */
.lv-odstoupeni__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 600px) {
	.lv-odstoupeni__btn {
		width: 100%;
	}
}
