:root {
	--BR-Ocean-Blue: #024268;
	--Success-Green: #00CA5E;
	--Heading-Color: var(--BR-Ocean-Blue);
}

/* Page Wrapper */
.registracija-sekminga-wrapper {
	margin-top: 15vh;
	margin-bottom: 15vh;
	padding: 2rem 1rem;
	background-color: #f9f9f9;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Heading */
.registracija-heading {
	color: var(--Heading-Color);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 20px;
}

/* Lead Paragraph */
.registracija-lead {
	color: var(--BR-Ocean-Blue);
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 16px;
}

/* Note Paragraph */
.registracija-note {
	font-size: 16px;
	color: #5c5c5c;
	line-height: 1.6;
}

/* Button */
.registracija-btn {
	background-color: var(--Success-Green);
	color: white;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 28px;
	border: none;
	border-radius: 10px;
	margin-top: 1.5rem;
	transition: background-color 0.3s ease;
}

.registracija-btn:hover {
	background-color: #00b454;
	color: white;
	text-decoration: none;
}
@media (max-width: 767.98px) {
	.registracija-sekminga-wrapper {
		margin-top: 6vh;
		margin-bottom: 6vh;
	}
}