/*
 * Form presentation belongs to the theme. Ninja Forms intentionally inherits
 * native control styles when its Opinionated Styles setting is "None".
 */

.ntt-content-main input[type="text"],
.ntt-content-main input[type="email"],
.ntt-content-main input[type="tel"],
.ntt-content-main input[type="url"],
.ntt-content-main input[type="search"],
.ntt-content-main input[type="password"],
.ntt-content-main input[type="number"],
.ntt-content-main input[type="date"],
.ntt-content-main input[type="time"],
.ntt-content-main input[type="datetime-local"],
.ntt-content-main input[type="month"],
.ntt-content-main input[type="week"],
.ntt-content-main select,
.ntt-content-main textarea {
	background: #fff;
	border: 1px solid #7b8794;
	border-radius: 8px;
	color: #10131b;
	display: block;
	font: inherit;
	line-height: 1.4;
	min-height: 48px;
	padding: 0.7em 0.85em;
	transition:
		border-color var(--dur-fast) ease,
		box-shadow var(--dur-fast) ease;
	width: 100%;
}

.ntt-content-main textarea {
	min-height: 144px;
	resize: vertical;
}

.ntt-content-main input::placeholder,
.ntt-content-main textarea::placeholder {
	color: #5f6b78;
	opacity: 1;
}

.ntt-content-main input[type="checkbox"],
.ntt-content-main input[type="radio"] {
	accent-color: var(--u27-cyan);
	block-size: 1.25em;
	inline-size: 1.25em;
}

.ntt-content-main input[type="text"]:focus-visible,
.ntt-content-main input[type="email"]:focus-visible,
.ntt-content-main input[type="tel"]:focus-visible,
.ntt-content-main input[type="url"]:focus-visible,
.ntt-content-main input[type="search"]:focus-visible,
.ntt-content-main input[type="password"]:focus-visible,
.ntt-content-main input[type="number"]:focus-visible,
.ntt-content-main input[type="date"]:focus-visible,
.ntt-content-main input[type="time"]:focus-visible,
.ntt-content-main input[type="datetime-local"]:focus-visible,
.ntt-content-main input[type="month"]:focus-visible,
.ntt-content-main input[type="week"]:focus-visible,
.ntt-content-main select:focus-visible,
.ntt-content-main textarea:focus-visible {
	border-color: var(--u27-cyan);
	box-shadow: 0 0 0 4px rgba(19, 169, 217, 0.2);
	outline: 3px solid var(--u27-cyan);
	outline-offset: 2px;
}

.ntt-content-main :disabled {
	cursor: not-allowed;
	opacity: 0.58;
}

.ntt-content-main .nf-form-cont {
	background: #fff;
	border: 1px solid #d7dee7;
	border-radius: var(--radius-lg);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
	color: #10131b;
	margin-block: clamp(32px, 6vw, 56px) 0;
	padding: clamp(24px, 5vw, 48px);
}

.ntt-content-main .pre-registration-intro {
	margin-inline: auto;
	max-width: 820px;
}

.ntt-content-main .pre-registration-intro__eyebrow {
	color: var(--u27-cyan);
	font-size: 0.82rem;
	font-weight: var(--w-bold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ntt-content-main .pre-registration-intro h2 {
	font-size: clamp(30px, 5vw, 52px);
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin-block: 0.35em;
}

.ntt-content-main .ntt-privacy-notice {
	background: #f1f5f8;
	border-left: 4px solid var(--u27-cyan);
	border-radius: 6px;
	margin-top: 2rem;
	padding: clamp(18px, 3vw, 24px);
}

.ntt-content-main .ntt-privacy-notice h3 {
	font-size: 1.05rem;
	margin: 0 0 0.65rem;
}

.ntt-content-main .ntt-privacy-notice p {
	color: #344150;
	font-size: 0.9rem;
	line-height: 1.65;
	margin: 0.65rem 0 0;
}

.ntt-content-main .ntt-privacy-notice a {
	color: #006f97;
	font-weight: var(--w-semibold);
}

.ntt-content-main .nf-form-cont .nf-form-content {
	margin: 0;
	max-width: none;
	padding: 0;
}

.ntt-content-main .nf-form-cont .nf-form-title h3 {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
	margin: 0 0 0.9em;
}

.ntt-content-main .nf-form-cont .nf-form-fields-required {
	color: #44505d;
	font-size: 0.85em;
	margin-bottom: 1.5rem;
}

.ntt-content-main .nf-form-cont .nf-field-label label {
	color: #10131b;
	font-size: 0.95em;
	font-weight: var(--w-bold);
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.ntt-content-main .nf-form-cont .ninja-forms-req-symbol,
.ntt-content-main .nf-form-cont .nf-error-msg {
	color: #b42318;
}

.ntt-content-main .nf-form-cont .nf-after-field .nf-error-msg {
	font-size: 0.85em;
	font-weight: var(--w-semibold);
	line-height: 1.4;
	margin-top: 0.45rem;
}

.ntt-content-main .nf-form-cont .nf-error .ninja-forms-field {
	border-color: #b42318;
	box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.ntt-content-main .nf-form-cont input[type="button"],
.ntt-content-main .nf-form-cont input[type="submit"],
.ntt-content-main .nf-form-cont button {
	background: #10131b;
	border-color: #10131b;
	color: #fff;
	cursor: pointer;
	min-height: 48px;
	transition:
		background-color var(--dur-fast) ease,
		border-color var(--dur-fast) ease,
		color var(--dur-fast) ease,
		transform var(--dur-fast) ease;
}

.ntt-content-main .nf-form-cont input[type="button"]:hover,
.ntt-content-main .nf-form-cont input[type="submit"]:hover,
.ntt-content-main .nf-form-cont button:hover {
	background: var(--u27-cyan);
	border-color: var(--u27-cyan);
	color: #071018;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.ntt-content-main .nf-form-cont {
		border-radius: 10px;
		padding: 24px 20px;
	}
}
