
.rtvslos-contact{
	--rtv-accent:#19b9b5;
	--rtv-navy:#172735;
	--rtv-line:#d9e3e8;
	margin:28px 0;
	padding:30px;
	border:1px solid var(--rtv-line);
	border-radius:20px;
	background:rgba(255,255,255,.88);
	box-shadow:0 12px 32px rgba(20,40,55,.06);
	color:#25333e;
}
.rtvslos-contact__intro span{
	display:block;
	margin-bottom:6px;
	color:var(--rtv-accent);
	font-size:12px;
	font-weight:900;
	letter-spacing:.14em;
	text-transform:uppercase;
}
.rtvslos-contact__intro h2{
	margin:0 0 8px;
	color:#123755;
	font-size:clamp(28px,4vw,42px);
	line-height:1.05;
}
.rtvslos-contact__intro p{
	margin:0 0 24px;
	color:#667682;
	font-size:16px;
}
.rtvslos-contact__grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:16px;
}
.rtvslos-contact__field{
	margin-bottom:16px;
}
.rtvslos-contact__field label{
	display:block;
	margin-bottom:6px;
	color:#263642;
	font-weight:800;
	font-size:14px;
}
.rtvslos-contact__field label span{color:#d94b4b}
.rtvslos-contact__field input,
.rtvslos-contact__field textarea{
	box-sizing:border-box;
	width:100%;
	padding:13px 14px;
	border:1px solid #cfdbe2;
	border-radius:10px;
	background:#fff;
	color:#1f2b34;
	font:inherit;
	box-shadow:none;
	transition:border-color .15s ease, box-shadow .15s ease;
}
.rtvslos-contact__field textarea{
	resize:vertical;
	min-height:150px;
}
.rtvslos-contact__field input:focus,
.rtvslos-contact__field textarea:focus{
	outline:none;
	border-color:var(--rtv-accent);
	box-shadow:0 0 0 3px rgba(25,185,181,.13);
}
.rtvslos-contact__bottom{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
}
.rtvslos-contact__bottom p{
	margin:0;
	color:#84919a;
	font-size:12px;
}
.rtvslos-contact__bottom button{
	border:0;
	border-radius:999px;
	padding:12px 22px;
	background:#123f60;
	color:#fff;
	font:inherit;
	font-weight:900;
	cursor:pointer;
}
.rtvslos-contact__bottom button:hover{
	background:#0c334f;
}
.rtvslos-contact__notice{
	margin:0 0 18px;
	padding:12px 14px;
	border-radius:10px;
	font-weight:700;
}
.rtvslos-contact__notice--success{
	border:1px solid #b9e4d1;
	background:#eefaf5;
	color:#276c4e;
}
.rtvslos-contact__notice--error{
	border:1px solid #efc6c6;
	background:#fff2f2;
	color:#903232;
}
.rtvslos-contact__hp{
	position:absolute!important;
	left:-9999px!important;
	width:1px!important;
	height:1px!important;
	overflow:hidden!important;
}
@media(max-width:680px){
	.rtvslos-contact{
		padding:22px 16px;
		border-radius:16px;
	}
	.rtvslos-contact__grid{
		grid-template-columns:1fr;
		gap:0;
	}
	.rtvslos-contact__bottom{
		align-items:flex-start;
		flex-direction:column;
	}
	.rtvslos-contact__bottom button{
		width:100%;
	}
}

.rtvslos-contact__bottom button:disabled{
	opacity:.55;
	cursor:not-allowed;
}
