/* ====== KARTA / WRAPPER ====== */
.cf-wrap{
	max-width: 900px;
	margin: 34px auto;
	padding: 30px;
	border-radius: 22px;
	border: 1px solid rgba(0,0,0,.12);
	box-shadow: 0 18px 55px rgba(0,0,0,.08);
	background: #fff;
}

/* ====== NAGŁÓWKI ====== */
.cf-head{
	margin-bottom: 20px;
}

.cf-title{
	font-size: 34px;          /* większe */
	font-weight: 900;         /* mocniej */
	line-height: 1.1;
	letter-spacing: -0.4px;
	color: rgba(0,0,0,.92);
}

.cf-subtitle{
	margin-top: 10px;
	font-size: 17px;          /* większe */
	font-weight: 700;         /* wyraźniej */
	line-height: 1.35;
	color: rgba(0,0,0,.72);
}

/* ====== FORM ====== */
.chotek-form{
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* 2 kolumny */
.cf-grid-2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media (max-width: 720px){
	.cf-wrap{ padding: 20px; border-radius: 18px; }
	.cf-grid-2{ grid-template-columns: 1fr; }
	.cf-title{ font-size: 26px; }
	.cf-subtitle{ font-size: 15px; }
}

/* ====== POLA - DUŻE, KONTRASTOWE, WYRAZISTE RAMKI ====== */
.cf-field input,
.cf-field textarea,
.cf-field select{
	width: 100%;
	padding: 18px 18px;              /* większe */
	border-radius: 16px;
	border: 2px solid rgba(0,0,0,.34); /* wyraźniejsza ramka */
	background: #fff;
	font-size: 17px;                  /* większy font */
	font-weight: 650;
	color: rgba(0,0,0,.92);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

/* placeholder wyraźniejszy */
.cf-field input::placeholder,
.cf-field textarea::placeholder{
	color: rgba(0,0,0,.50);
	font-weight: 600;
}

/* textarea ciut większa */
.cf-field textarea{
	padding: 18px 18px;
	min-height: 150px;
	resize: vertical;
}

/* SELECT – wygląd jak input + strzałka */
.cf-field select{
	appearance: none;
	cursor: pointer;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(0,0,0,.55) 50%),
		linear-gradient(135deg, rgba(0,0,0,.55) 50%, transparent 50%);
	background-position:
		calc(100% - 24px) calc(50% - 3px),
		calc(100% - 16px) calc(50% - 3px);
	background-size: 7px 7px, 7px 7px;
	background-repeat: no-repeat;
}

/* focus mocny, czytelny */
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus{
	outline: none;
	border-color: #00ABD2;
	box-shadow: 0 0 0 5px rgba(0,171,210,.22);
	transform: translateY(-1px);
	background: #ffffff;
}

/* ====== RODO - NIE ROZJEŻDŻA SIĘ ====== */
.cf-bottom{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 4px;
}

@media (max-width: 720px){
	.cf-bottom{
		flex-direction: column;
		align-items: stretch;
	}
}

/* checkbox i tekst w jednej linii, zawijanie kontrolowane */
.cf-checkbox{
	display: grid;
	grid-template-columns: 22px 1fr; /* stała kolumna na checkbox */
	column-gap: 12px;
	align-items: start;
	font-size: 15px;
	line-height: 1.35;
	color: rgba(0,0,0,.76);
	max-width: 520px; /* żeby nie “rozjeżdżało” w kosmos */
}

.cf-checkbox input{
	width: 22px;
	height: 22px;
	margin: 0;               /* kluczowe: brak przesunięć */
	margin-top: 2px;
	accent-color: #00ABD2;
}

.cf-checkbox span{
	display: block;
}

.cf-checkbox a{
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ====== CTA BUTTON - BARDZIEJ ZAOKRĄGLONY, WIĘKSZY ====== */
.cf-btn{
	padding: 18px 20px;
	border-radius: 999px; /* mocno zaokrąglony */
	border: none;
	cursor: pointer;
	color: #fff;
	background: linear-gradient(135deg,#005788,#00ABD2);
	box-shadow: 0 18px 40px rgba(0,0,0,.14);
	transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
	text-align: left;
	min-width: 360px;
}

@media (max-width: 720px){
	.cf-btn{ min-width: 100%; }
}

.cf-btn:hover{
	transform: translateY(-2px);
	box-shadow: 0 22px 52px rgba(0,0,0,.18);
}

.cf-btn:active{
	transform: translateY(0);
	opacity: .96;
}

.cf-btn__title{
	display:block;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: -.25px;
}

.cf-btn__sub{
	display:block;
	margin-top: 3px;
	font-size: 14px;
	font-weight: 650;
	opacity: .92;
}

/* ====== SUKCES / BŁĘDY ====== */
.cf-success{
	max-width: 900px;
	margin: 0 auto 18px;
	padding: 18px 20px;
	border-radius: 18px;
	background: linear-gradient(135deg,#1AA74F,#3fd46f);
	color: #fff;
	font-weight: 900;
	font-size: 16px;
	box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

.cf-error{
	max-width: 900px;
	margin: 0 auto 18px;
	padding: 16px 18px;
	border-radius: 18px;
	background: #fff4f4;
	border: 2px solid #ffb4b4;
}

.cf-error ul{ margin:0; padding-left:18px; }
.cf-error li{ margin:4px 0; font-weight: 650; }
