.registration-page {
	max-width: 820px;
	margin: 30px auto 50px;
}

.registration-header {
	margin-bottom: 22px;
	text-align: center;
}

.registration-eyebrow {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #438dde;
}

.registration-header h1 {
	margin: 0 0 7px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.15;
	color: #17212b;
}

.registration-date {
	font-size: 16px;
	color: #667085;
}


/* główna karta */

.registration-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	border: 1px solid #e6e9ee;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.registration-card-header {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e6e9ee;
}

.registration-card-header h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: #17212b;
}

.registration-card-header p {
	margin: 7px 0 0;
	color: #667085;
}


/* pola formularza */

.registration-fields > .mb-3 {
	margin-bottom: 24px !important;
}

.registration-card .form-label {
	margin-bottom: 8px;
	font-weight: 600;
	color: #344054;
}

.registration-card .form-control {
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid #d0d5dd;
	border-radius: 10px;
}

.registration-card textarea.form-control {
	min-height: 110px;
}

.registration-card .form-control:focus {
	border-color: #438dde;
	box-shadow: 0 0 0 3px rgba(67, 141, 222, .12);
}


/* radio i checkbox */

.registration-card .form-check-input {
	width: 18px;
	height: 18px;
	margin-top: .15em;
}

.registration-card .form-check-label {
	margin-left: 4px;
}


/* wybór dystansu */

.registration-options {
	display: grid;
	gap: 12px;
}

.registration-option {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 16px 18px;
	border: 1px solid #e6e9ee;
	border-radius: 14px;
	background: #fbfcfd;
	cursor: pointer;
	transition:
		border-color .15s ease,
		background-color .15s ease,
		box-shadow .15s ease;
}

.registration-option:hover {
	border-color: rgba(67, 141, 222, .45);
	background: #f8fbff;
}

.registration-option:has(.form-check-input:checked) {
	border-color: #438dde;
	background: #f3f8fe;
	box-shadow: 0 0 0 2px rgba(67, 141, 222, .08);
}

.registration-option-name {
	font-size: 17px;
	font-weight: 600;
	color: #17212b;
}


/* błędy */

.registration-error,
.registration-card .text-danger {
	font-size: 14px;
}

.registration-error {
	margin-top: 8px;
	padding: 11px 14px;
	border-radius: 9px;
	background: #fff3f2;
	color: #b42318;
	font-size: 14px;
}


/* przyciski */

.registration-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid #e6e9ee;
}

.registration-actions .btn {
	min-width: 120px;
	padding: 10px 22px;
	border-radius: 10px;
	font-weight: 600;
}


/* telefon */

@media (max-width: 640px) {

	.registration-page {
		margin: 20px auto 35px;
	}

	.registration-header h1 {
		font-size: 28px;
	}

	.registration-card {
		padding: 20px 18px;
		border-radius: 16px;
	}

	.registration-card-header {
		margin-bottom: 22px;
	}

	.registration-card-header h2 {
		font-size: 23px;
	}

	.registration-option {
		padding: 14px;
	}

	.registration-actions {
		margin-top: 28px;
	}

	.registration-actions .btn {
		min-width: 105px;
	}
}