/**
 * Get Smart LMS
 * Customer Registration
 */

.gsf-customer-auth-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
	gap: 24px;
	max-width: 1080px;
	margin: 34px auto;
	font-family: inherit;
}

.gsf-customer-auth-card,
.gsf-auth-security-card {
	box-sizing: border-box;
	border: 1px solid #dce5ef;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 16px 45px rgba(15, 23, 42, .08);
}

.gsf-customer-auth-card {
	padding: 34px;
}

.gsf-auth-security-card {
	align-self: start;
	padding: 30px;
	background: #062b59;
	color: #fff;
}

.gsf-auth-eyebrow {
	display: block;
	margin-bottom: 7px;
	color: #0a8f3d;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.gsf-auth-brand h1,
.gsf-verification-card h1 {
	margin: 0;
	color: #082a57;
	font-size: clamp(28px, 4vw, 38px);
	line-height: 1.15;
}

.gsf-auth-brand p,
.gsf-verification-card > p {
	max-width: 640px;
	margin: 10px 0 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.65;
}

.gsf-registration-form {
	margin-top: 28px;
}

.gsf-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.gsf-field {
	display: grid;
	gap: 7px;
}

.gsf-field-wide {
	grid-column: 1 / -1;
}

.gsf-field label {
	color: #1e293b;
	font-size: 13px;
	font-weight: 700;
}

.gsf-field label span {
	color: #dc2626;
}

.gsf-field input {
	width: 100%;
	min-height: 46px;
	box-sizing: border-box;
	padding: 10px 13px;
	border: 1px solid #cbd5e1;
	border-radius: 9px;
	background: #fff;
	color: #0f172a;
	font-size: 14px;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.gsf-field input:focus {
	border-color: #0a8f3d;
	box-shadow: 0 0 0 3px rgba(10, 143, 61, .12);
}

.gsf-field small {
	color: #64748b;
	font-size: 11px;
}

.gsf-password-wrap {
	position: relative;
}

.gsf-password-wrap input {
	padding-right: 60px;
}

.gsf-password-toggle {
	position: absolute;
	top: 50%;
	right: 9px;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #0a8f3d;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.gsf-password-rules {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 18px 0;
	padding: 13px;
	border-radius: 10px;
	background: #f8fafc;
}

.gsf-password-rules strong {
	width: 100%;
	color: #475569;
	font-size: 11px;
}

.gsf-password-rules span {
	padding: 5px 8px;
	border-radius: 999px;
	background: #e2e8f0;
	color: #64748b;
	font-size: 10px;
	font-weight: 700;
}

.gsf-password-rules span.is-valid {
	background: #dcfce7;
	color: #166534;
}

.gsf-terms-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 17px 0;
	color: #475569;
	font-size: 12px;
	line-height: 1.5;
}

.gsf-terms-check input {
	margin-top: 3px;
}

.gsf-primary-button,
.gsf-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	box-sizing: border-box;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	cursor: pointer;
}

.gsf-primary-button {
	width: 100%;
	border: 1px solid #0a8f3d;
	background: #0a8f3d;
	color: #fff;
}

.gsf-primary-button:hover {
	background: #087a35;
	color: #fff;
}

.gsf-secondary-button {
	padding: 0 18px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #334155;
}

.gsf-login-helper {
	margin: 16px 0 0;
	text-align: center;
	color: #64748b;
	font-size: 11px;
}

.gsf-login-helper span {
	display: block;
	margin-top: 3px;
}

.gsf-auth-notice {
	margin-top: 20px;
	padding: 12px 14px;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 600;
}

.gsf-auth-notice.is-error {
	border: 1px solid #fecaca;
	background: #fef2f2;
	color: #991b1b;
}

.gsf-security-icon,
.gsf-verification-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 15px;
}

.gsf-security-icon {
	margin-bottom: 24px;
	background: rgba(255,255,255,.10);
}

.gsf-security-icon .dashicons {
	width: 28px;
	height: 28px;
	font-size: 28px;
}

.gsf-auth-security-card h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 20px;
}

.gsf-auth-security-card > p {
	margin: 0;
	color: #dbeafe;
	font-size: 12px;
	line-height: 1.65;
}

.gsf-auth-security-card ul {
	display: grid;
	gap: 11px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.gsf-auth-security-card li {
	position: relative;
	padding-left: 23px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

.gsf-auth-security-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #34d399;
	font-weight: 900;
}

.gsf-verification-card {
	text-align: center;
}

.gsf-verification-check {
	margin: 0 auto 18px;
	background: #dcfce7;
	color: #15803d;
}

.gsf-verification-check .dashicons {
	width: 28px;
	height: 28px;
	font-size: 28px;
}

.gsf-otp-preview {
	margin: 27px 0;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.gsf-otp-preview label {
	display: block;
	margin-bottom: 14px;
	color: #334155;
	font-size: 12px;
	font-weight: 800;
}

.gsf-otp-boxes {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.gsf-otp-boxes span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 46px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	font-size: 24px;
}

.gsf-otp-preview p {
	margin: 13px 0 0;
	color: #64748b;
	font-size: 11px;
}

.gsf-status-line {
	display: grid;
	grid-template-columns: 34px minmax(0,1fr);
	gap: 11px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.gsf-status-line:last-child {
	border-bottom: 0;
}

.gsf-status-line > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
}

.gsf-status-line.is-complete > span {
	border-color: #22c55e;
	background: #22c55e;
}

.gsf-status-line.is-current > span {
	border-color: #fbbf24;
	color: #fbbf24;
}

.gsf-status-line strong {
	display: block;
	color: #fff;
	font-size: 12px;
}

.gsf-status-line small {
	color: #bfdbfe;
	font-size: 10px;
}

@media (max-width: 820px) {
	.gsf-customer-auth-shell {
		grid-template-columns: 1fr;
	}

	.gsf-auth-security-card {
		order: -1;
	}
}

@media (max-width: 580px) {
	.gsf-customer-auth-card,
	.gsf-auth-security-card {
		padding: 22px;
		border-radius: 14px;
	}

	.gsf-form-grid {
		grid-template-columns: 1fr;
	}

	.gsf-field-wide {
		grid-column: auto;
	}

	.gsf-otp-boxes span {
		width: 36px;
		height: 42px;
	}
}


.gsf-auth-notice.is-success {
	border: 1px solid #bbf7d0;
	background: #f0fdf4;
	color: #166534;
}

.gsf-otp-form {
	display: grid;
	gap: 13px;
	margin: 25px 0 10px;
}

.gsf-otp-form label {
	color: #334155;
	font-size: 12px;
	font-weight: 800;
}

.gsf-otp-form input {
	width: min(100%, 320px);
	min-height: 54px;
	margin: 0 auto;
	box-sizing: border-box;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: .35em;
}

.gsf-resend-form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.gsf-text-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #0a8f3d;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.gsf-resend-form span {
	color: #64748b;
	font-size: 10px;
}
