.rtc-nueva-agenda {
	max-width: 900px;
	margin: 0 auto;
}

.rtc-nueva-agenda__estado {
	margin-bottom: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.rtc-nueva-agenda__estado--error,
.rtc-nueva-agenda--error .rtc-nueva-agenda__estado {
	color: #b42318;
}

.rtc-agenda-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 24px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.rtc-campo {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.rtc-campo--ancho {
	grid-column: 1 / -1;
}

.rtc-campo label {
	font-size: 14px;
	font-weight: 600;
	color: #1f2937;
}

.rtc-campo input:not([type="checkbox"]),
.rtc-campo select {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	color: #111827;
	font: inherit;
	box-sizing: border-box;
}

.rtc-campo input:not([type="checkbox"]):focus,
.rtc-campo select:focus {
	outline: none;
	border-color: #6b7280;
	box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.12);
}

.rtc-campo input:not([type="checkbox"]):disabled,
.rtc-campo select:disabled {
	background: #f9fafb;
	color: #6b7280;
	cursor: not-allowed;
}

/* CHECK DE PRIVACIDAD */

.rtc-checkbox {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 9px;
	margin: 2px 0 0;
	padding: 0;
	font-size: 14px !important;
	line-height: 1.4;
	font-weight: 400 !important;
	color: #1f2937;
	cursor: pointer;
}

.rtc-checkbox input[type="checkbox"] {
	appearance: auto;
	-webkit-appearance: checkbox;
	width: 15px !important;
	height: 15px !important;
	min-width: 15px !important;
	min-height: 15px !important;
	max-width: 15px !important;
	max-height: 15px !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 0 0 15px;
	cursor: pointer;
}

.rtc-checkbox span {
	display: inline;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
}

/* BOTÓN RESERVAR */

.rtc-campo button {
	width: 100%;
	min-height: 48px;
	padding: 11px 18px;
	border: 0;
	border-radius: 8px;
	background: #4aa3dc;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.rtc-campo button:hover:not(:disabled) {
	opacity: 0.92;
}

.rtc-campo button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* RESULTADO */

.rtc-resultado {
	padding-top: 4px;
	font-weight: 600;
}

.rtc-resultado--error {
	color: #b42318;
}

/* INFORMACIÓN LEGAL */

.rtc-legal {
	margin-top: 18px;
	padding: 15px 17px;
	border-radius: 8px;
	background: #f7f7f7;
	color: #222;
	font-size: 12px;
	line-height: 1.45;
	font-weight: 400;
}

.rtc-legal > strong:first-child {
	display: block;
	margin: 0 0 8px;
	padding: 0;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;
}

.rtc-legal p {
	margin: 0 0 6px;
	padding: 0;
	font-size: 12px !important;
	line-height: 1.45 !important;
	font-weight: 400;
}

.rtc-legal p:last-child {
	margin-bottom: 0;
}

.rtc-legal p strong {
	font-size: inherit;
	font-weight: 700;
}

.rtc-legal a {
	color: #2997e5;
	text-decoration: none;
}

.rtc-legal a:hover {
	text-decoration: underline;
}

/* MÓVIL */

@media (max-width: 640px) {
	.rtc-agenda-form {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.rtc-campo--ancho {
		grid-column: auto;
	}

	.rtc-checkbox,
	.rtc-checkbox span {
		font-size: 13px !important;
	}

	.rtc-legal,
	.rtc-legal p,
	.rtc-legal > strong:first-child {
		font-size: 11px !important;
	}
}