.rrl-form-shell {
	background: #f4f8f7;
	border: 1px solid #d8e4e1;
	border-radius: 18px;
	color: #10283a;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.rrl-form-notice {
	background: #fff7df;
	border-left: 4px solid #d39120;
	margin-top: 0;
	padding: .85rem 1rem;
}

.rrl-result {
	border-left: 4px solid;
	padding: .85rem 1rem;
}

.rrl-result-success {
	background: #e8f5ef;
	border-color: #0c6758;
}

.rrl-result-warning {
	background: #fff7df;
	border-color: #d39120;
}

.rrl-result-error {
	background: #fff0ee;
	border-color: #b3261e;
}

.rrl-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rrl-form label {
	display: grid;
	font-weight: 650;
	gap: .4rem;
}

.rrl-form label span {
	font-size: .9em;
	font-weight: 400;
}

.rrl-form input,
.rrl-form select,
.rrl-form textarea {
	background: #fff;
	border: 1px solid #9eafab;
	border-radius: 8px;
	box-sizing: border-box;
	font: inherit;
	padding: .75rem;
	width: 100%;
}

.rrl-form input:focus,
.rrl-form select:focus,
.rrl-form textarea:focus {
	border-color: #0c6758;
	outline: 3px solid rgba(12, 103, 88, .18);
}

.rrl-form input:disabled,
.rrl-form select:disabled,
.rrl-form textarea:disabled {
	background: #f8fbfa;
	color: #52636c;
	opacity: 1;
}

.rrl-form a {
	color: #0c6758;
}

.rrl-wide,
.rrl-consent {
	grid-column: 1 / -1;
}

.rrl-consent {
	align-items: start;
	display: flex !important;
	font-weight: 400 !important;
	margin: 1rem 0;
}

.rrl-consent input {
	margin-top: .25rem;
	width: auto;
}

.rrl-form button {
	background: #0c6758;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: .85rem 1.4rem;
}

.rrl-form button:disabled {
	background: #87938f;
	cursor: not-allowed;
}

.rrl-hp {
	left: -10000px;
	position: absolute;
	top: auto;
}

@media (max-width: 700px) {
	.rrl-grid {
		grid-template-columns: 1fr;
	}
}
