/* Visa Slots — "Runway" auth theme */

.runway-scene {
	display: grid;
	grid-template-columns: 1.1fr 0.95fr;
	min-height: 100vh;
	background: #e7f0f9;
	font-family: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 860px) {
	.runway-scene { grid-template-columns: 1fr; }
}

.rw-hero {
	padding: 64px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
}

@media (max-width: 860px) {
	.rw-hero { padding: 44px 28px 16px; }
}

.rw-eyebrow {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #a97a2b;
	text-transform: uppercase;
}

.rw-headline {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.01em;
	color: #16192c;
	text-wrap: balance;
	max-width: 440px;
}

.rw-trust-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 4px;
}

.rw-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.rw-trust-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #d6e6f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rw-trust-icon svg { width: 20px; height: 20px; }

.rw-trust-text h3 {
	font-size: 14.5px;
	font-weight: 700;
	color: #16192c;
	margin: 0 0 3px;
}

.rw-trust-text p {
	font-size: 13px;
	color: #5b6b7a;
	margin: 0;
	line-height: 1.5;
}

.rw-card-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 44px 48px;
}

@media (max-width: 860px) {
	.rw-card-wrap { padding: 8px 24px 48px; }
}

.rw-card {
	width: 100%;
	max-width: 400px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 24px 48px -24px rgba(15, 30, 45, 0.22);
	padding: 40px 34px;
}

.rw-lang {
	text-align: right;
	font-size: 12px;
	color: #8ea0b1;
	margin-bottom: 18px;
}

.rw-mark {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
}

.rw-mark-badge {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: #d6e6f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wordmark {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.wordmark .navy-part { color: #16192c; }
.wordmark .gold-part { color: #a97a2b; }

.rw-form-head { margin-bottom: 24px; }

.rw-form-head h1 {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 6px;
	color: #16192c;
	letter-spacing: -0.01em;
}

.rw-form-head p {
	font-size: 13px;
	color: #5b6b7a;
	margin: 0;
}

.rw-field { margin-bottom: 15px; }

.rw-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #3f4f5e;
	margin-bottom: 7px;
}

.rw-field input {
	width: 100%;
	padding: 12.5px 14px;
	border-radius: 11px;
	border: 1.5px solid #d7e2ea;
	background: #f7fafc;
	font-size: 14px;
	color: #16192c;
	font-family: inherit;
}

.rw-field input::placeholder { color: #93a4b3; }
.rw-field input:focus { outline: none; border-color: #c9963c; background: #fff; }

.rw-field.has-error input { border-color: #c9524b; }
.rw-field-error { font-size: 12px; color: #b3423f; margin-top: 6px; }

.rw-check {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px;
	color: #3f4f5e;
	line-height: 1.5;
	margin-bottom: 12px;
}

.rw-check input {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	align-self: flex-start;
	margin: 3px 0 0 0;
	accent-color: #a97a2b;
}

.rw-check a { color: #16192c; text-decoration: underline; }

.rw-row-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 12px;
}

.rw-alert {
	background: rgba(195, 79, 71, 0.08);
	border: 1px solid rgba(195, 79, 71, 0.28);
	color: #8a2f2c;
	border-radius: 10px;
	padding: 11px 13px;
	font-size: 12.5px;
	margin-bottom: 18px;
	line-height: 1.5;
}

.rw-alert.rw-alert-success {
	background: rgba(56, 122, 79, 0.08);
	border-color: rgba(56, 122, 79, 0.28);
	color: #2c6b45;
}

.link-gold {
	color: #a97a2b;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.btn-gold {
	width: 100%;
	padding: 13.5px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(180deg, #e2b354 0%, #cd9738 100%);
	color: #16192c;
	font-size: 14.5px;
	font-weight: 800;
	cursor: pointer;
	margin-bottom: 18px;
}

.btn-gold:hover { filter: brightness(1.04); }
.btn-gold:focus-visible { outline: 2px solid #16192c; outline-offset: 2px; }

.btn-ghost-rw {
	width: 100%;
	padding: 13.5px;
	border-radius: 999px;
	border: 1.5px solid #d7e2ea;
	background: transparent;
	color: #16192c;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	margin-bottom: 18px;
}

.rw-foot-note {
	text-align: center;
	font-size: 13px;
	color: #5b6b7a;
}

.rw-foot-note a { color: #16192c; font-weight: 700; text-decoration: none; }

.rw-legal {
	text-align: center;
	font-size: 11.5px;
	color: #8ea0b1;
	margin-top: 16px;
}

.rw-legal a { color: #5b6b7a; text-decoration: underline; }
