/* ============================================================
   Odstúpenie od zmluvy – frontend štýly
   ============================================================ */

.oz-odst-wrap {
	max-width: 720px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.55;
	color: #1c1c28;
}

.oz-odst-intro {
	margin: 0 0 1.5rem;
	color: #4a4a5a;
}

/* --- Tlačidlo --- */
.oz-odst-button {
	display: inline-block;
	padding: 12px 22px;
	background: #1c1c28;
	color: #fff !important;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .18s ease, transform .05s ease;
}
.oz-odst-button:hover { background: #34344a; }
.oz-odst-button:active { transform: translateY(1px); }
.oz-odst-button--submit { width: 100%; padding: 15px 22px; font-size: 16px; }

.oz-odst-account-button { margin-top: 12px; }

/* --- Formulár --- */
.oz-odst-form { display: block; }

.oz-odst-section {
	border: 1px solid #e4e4ee;
	border-radius: 12px;
	padding: 18px 20px 6px;
	margin: 0 0 1.25rem;
	background: #fff;
}
.oz-odst-section > legend {
	font-weight: 700;
	font-size: 15px;
	padding: 0 8px;
	color: #1c1c28;
}

.oz-field { margin: 0 0 1rem; }
.oz-field label,
.oz-field .oz-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 5px;
	color: #2a2a3a;
}

.oz-field input[type="text"],
.oz-field input[type="email"],
.oz-field input[type="tel"],
.oz-field input[type="date"],
.oz-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	border: 1px solid #cfcfe0;
	border-radius: 8px;
	font-size: 15px;
	background: #fbfbfe;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.oz-field input:focus,
.oz-field textarea:focus {
	outline: none;
	border-color: #5b5bd6;
	box-shadow: 0 0 0 3px rgba(91, 91, 214, .15);
	background: #fff;
}

.oz-row { display: flex; gap: 16px; }
.oz-row .oz-field { flex: 1; }
.oz-row-3 .oz-field { flex: 1; }

.oz-req { color: #d23b3b; font-weight: 700; }

.oz-radio,
.oz-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-weight: 400 !important;
	font-size: 14px;
	margin: 8px 0;
	cursor: pointer;
	color: #2a2a3a;
}
.oz-radio input,
.oz-checkbox input { margin-top: 3px; flex: 0 0 auto; }

.oz-odst-declaration .oz-checkbox { margin: 10px 0; }

.oz-odst-required-note {
	font-size: 13px;
	color: #6a6a7a;
	margin: 0 0 1rem;
}

.oz-odst-submit { margin: 1rem 0 0; }

/* --- Chyby --- */
.oz-odst-errors {
	background: #fdeaea;
	border: 1px solid #f3bcbc;
	color: #9a2222;
	border-radius: 8px;
	padding: 12px 16px;
	margin: 0 0 1.25rem;
}
.oz-odst-errors p { margin: 4px 0; }

/* --- Úspech --- */
.oz-odst-success {
	text-align: center;
	background: #fff;
	border: 1px solid #cfead6;
	border-radius: 14px;
	padding: 40px 28px;
}
.oz-odst-success-icon {
	width: 64px;
	height: 64px;
	line-height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #1f9d57;
	color: #fff;
	font-size: 34px;
	font-weight: 700;
}
.oz-odst-success h3 { margin: 0 0 10px; font-size: 22px; }
.oz-odst-success .oz-odst-time { color: #4a4a5a; font-size: 14px; margin-top: 12px; }

/* --- Mobil --- */
@media (max-width: 600px) {
	.oz-row { flex-direction: column; gap: 0; }
}
