/**
 * LMS Lab — Student dashboard / auth page
 *
 * @package LMS_Lab
 */

.lms-is-account-page .site-main {
	width: 100%;
	max-width: none;
}

.lms-account-page {
	--lms-account-container: 77.5rem;
	--lms-account-radius: 18px;
	--lms-account-radius-sm: 12px;
	--lms-account-shadow: 0 1px 2px rgba(20, 22, 28, 0.04), 0 16px 40px rgba(20, 22, 28, 0.06);

	background: #f4f5f7;
	color: #14161c;
	font-size: 1.0625rem;
	line-height: 1.6;
	padding: 2.5rem 0 4rem;
}

.lms-account-page.lms-account-page--logged-out {
	padding-top: 1.75rem;
	padding-bottom: 3rem;
}

.lms-account-page--logged-out .lms-account-intro__title {
	margin-bottom: 0.625rem;
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.lms-account-page--logged-out .lms-account-intro__lead {
	margin-bottom: 1.25rem;
	font-size: 1rem;
}

.lms-account-page--logged-out .lms-account-intro__benefits {
	gap: 0.875rem;
}

.lms-account-page__container {
	width: min(100% - 2.5rem, var(--lms-account-container));
	margin-inline: auto;
}

.lms-account-page__layout {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.lms-account-page__layout--auth {
		grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
		gap: 3rem;
	}
}

.lms-account-page__intro,
.lms-auth-card,
.lms-account-page__panel {
	min-width: 0;
}

@media (min-width: 900px) {
	.lms-account-page__intro {
		position: sticky;
		top: 1.5rem;
	}
}

/* Intro */

.lms-account-intro__eyebrow {
	margin: 0 0 1rem;
}

.lms-account-intro__brand {
	display: inline-block;
	color: #e30613;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
}

.lms-account-intro__brand:hover {
	color: #c8050f;
}

.lms-account-intro__title {
	margin: 0 0 0.875rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.lms-account-intro__lead {
	margin: 0 0 1.75rem;
	max-width: 34rem;
	color: #767c87;
	font-size: 1.125rem;
	line-height: 1.65;
}

.lms-account-intro__benefits {
	display: grid;
	gap: 1.125rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lms-account-intro__benefit {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.875rem;
	align-items: start;
}

.lms-account-intro__benefit-marker {
	width: 0.625rem;
	height: 0.625rem;
	margin-top: 0.55rem;
	border-radius: 999px;
	background: #e30613;
}

.lms-account-intro__benefit-title {
	margin: 0 0 0.2rem;
	font-size: 1rem;
	font-weight: 700;
}

.lms-account-intro__benefit-text {
	margin: 0;
	color: #767c87;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.lms-account-intro__footer {
	margin: 1.75rem 0 0;
}

.lms-account-intro__link {
	color: #e30613;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
}

.lms-account-intro__link:hover {
	text-decoration: underline;
}

/* Auth card */

.lms-auth-card {
	padding: 1.75rem;
	background: #ffffff;
	border: 1px solid #e7e9ee;
	border-radius: var(--lms-account-radius);
	box-shadow: var(--lms-account-shadow);
}

.lms-auth-card__tabs {
	display: flex;
	gap: 0.375rem;
	margin-bottom: 1.75rem;
	padding: 0.3125rem;
	background: #fce9ea;
	border-radius: 14px;
}

.lms-auth-card__tab {
	flex: 1;
	min-height: 2.75rem;
	padding: 0.625rem 1rem;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #767c87;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.lms-auth-card__tab:hover {
	color: #e30613;
}

.lms-auth-card__tab.is-active {
	background: #ffffff;
	color: #e30613;
	box-shadow: 0 1px 2px rgba(20, 22, 28, 0.06);
}

.lms-auth-card__body {
	min-width: 0;
}

.lms-auth-card__title {
	margin: 0 0 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Dashboard panel */

.lms-account-page__panel {
	padding: 1.75rem;
	background: #ffffff;
	border: 1px solid #e7e9ee;
	border-radius: var(--lms-account-radius);
	box-shadow: var(--lms-account-shadow);
}

.lms-account-page__panel-head {
	margin-bottom: 1.5rem;
}

.lms-account-page__panel-head--dashboard {
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e7e9ee;
}

.lms-account-page__panel-title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.lms-account-page__panel-lead {
	margin: 0;
	color: #767c87;
	font-size: 1rem;
	line-height: 1.55;
}

/* LifterLMS wrappers */

.lms-account-page__forms,
.lms-account-page .lifterlms,
.lms-account-page .llms-student-dashboard,
.lms-account-page .entry-content,
.lms-account-page .wp-block-post-content,
.lms-account-page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.lms-account-page .llms-student-dashboard {
	margin: 0;
}

.lms-account-page--logged-out .llms-person-login-form-wrapper,
.lms-account-page--logged-out .llms-new-person-form-wrapper {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.lms-account-page--logged-out .llms-new-person-form-wrapper {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.lms-account-page--logged-out .llms-form-heading {
	display: none;
}

/* Notices */

.lms-account-page .llms-notice,
.lms-account-page .llms-notices {
	margin-bottom: 1rem;
}

.lms-account-page .llms-notice {
	padding: 0.875rem 1rem;
	border-radius: var(--lms-account-radius-sm);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.lms-account-page .llms-notice.llms-error,
.lms-account-page .llms-notice.error {
	background: #fef3f2;
	border: 1px solid #fecdca;
	color: #b42318;
}

.lms-account-page .llms-notice.llms-success,
.lms-account-page .llms-notice.success {
	background: #ecfdf3;
	border: 1px solid #abefc6;
	color: #027a48;
}

/* Forms */

.lms-social-auth {
	margin: 0 0 1.25rem;
}

.lms-social-auth__title {
	margin: 0 0 0.75rem;
	color: #667085;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
}

.lms-social-auth__buttons,
.lms-social-auth__buttons .nsl-container,
.lms-social-auth__buttons .nsl-container-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	width: 100%;
}

.lms-social-auth__buttons .nsl-container-buttons a,
.lms-social-auth__buttons .nsl-container-buttons > div {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.lms-social-auth__buttons .nsl-button {
	width: 100% !important;
	min-height: 3.125rem;
	border-radius: var(--lms-account-radius-sm) !important;
	box-shadow: none !important;
}

.lms-social-auth__divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1.125rem 0 0;
	color: #98a2b3;
	font-size: 0.8125rem;
	font-weight: 600;
}

.lms-social-auth__divider::before,
.lms-social-auth__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e7e9ee;
}

.lms-social-auth__divider span {
	white-space: nowrap;
}

.lms-account-page .llms-form-fields {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
}

.lms-account-page .llms-form-fields::before,
.lms-account-page .llms-form-fields::after {
	display: none;
}

.lms-account-page .llms-form-field {
	float: none;
	width: 100%;
	max-width: 100%;
	margin: 0;
    padding: 0 10px 10px;
}

.lms-account-page .llms-form-field[class*="llms-cols-"] {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
}

.lms-account-page .llms-form-field label {
	display: block;
	margin-bottom: 0.4rem;
	color: #14161c;
	font-size: 0.9375rem;
	font-weight: 600;
}

.lms-account-page .llms-form-field .llms-description {
	display: block;
	margin-top: 0.4rem;
	color: #767c87;
	font-size: 0.8125rem;
	line-height: 1.5;
}

.lms-account-page .llms-form-field input[type="text"],
.lms-account-page .llms-form-field input[type="email"],
.lms-account-page .llms-form-field input[type="password"],
.lms-account-page .llms-form-field input[type="tel"],
.lms-account-page .llms-form-field input[type="url"],
.lms-account-page .llms-form-field select,
.lms-account-page .llms-form-field textarea {
	width: 100%;
	min-height: 3.125rem;
	padding: 0.8125rem 0.9375rem;
	border: 1px solid #e7e9ee;
	border-radius: var(--lms-account-radius-sm);
	background: #ffffff;
	color: #14161c;
	font: inherit;
	font-size: 1rem;
}

.lms-account-page .llms-form-field input:focus,
.lms-account-page .llms-form-field select:focus,
.lms-account-page .llms-form-field textarea:focus {
	outline: none;
	border-color: rgba(227, 6, 19, 0.55);
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.18);
}

.lms-account-page .llms-form-field.type-checkbox label,
.lms-account-page .llms-form-field.type-radio label {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-weight: 500;
}

.lms-account-page .llms-form-field.type-checkbox input,
.lms-account-page .llms-form-field.type-radio input {
	width: auto;
	min-height: auto;
	margin-top: 0.2rem;
}

/* Buttons */

.lms-account-page .llms-button-action,
.lms-account-page .llms-button-primary,
.lms-account-page .button.llms-button-primary,
.lms-account-page input[type="submit"].llms-button-action,
.lms-account-page input[type="submit"].llms-button-primary,
.lms-account-page button.llms-button-primary,
.lms-account-page button.llms-button-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	width: 100%;
	max-width: 100%;
	min-height: 3.125rem;
	padding: 0.8125rem 1.25rem;
	border: 0;
	border-radius: var(--lms-account-radius-sm);
	background: #e30613;
	color: #ffffff;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	white-space: normal;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.lms-account-page .llms-button-action:hover,
.lms-account-page .llms-button-primary:hover,
.lms-account-page .button.llms-button-primary:hover,
.lms-account-page input[type="submit"].llms-button-action:hover,
.lms-account-page input[type="submit"].llms-button-primary:hover,
.lms-account-page button.llms-button-primary:hover,
.lms-account-page button.llms-button-action:hover,
.lms-account-page .llms-button-action:focus-visible,
.lms-account-page .llms-button-primary:focus-visible,
.lms-account-page input[type="submit"].llms-button-action:focus-visible,
.lms-account-page input[type="submit"].llms-button-primary:focus-visible {
	background: #c8050f;
	color: #ffffff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.22);
}

.lms-account-page .llms-button-primary a,
.lms-account-page .llms-button-action a,
.lms-account-page .llms-button-primary span,
.lms-account-page .llms-button-action span,
.lms-account-page .llms-button-primary strong,
.lms-account-page .llms-button-action strong {
	color: inherit;
	text-decoration: none;
}

.lms-account-page .llms-button-primary:disabled,
.lms-account-page .llms-button-action:disabled,
.lms-account-page input[type="submit"].llms-button-action:disabled,
.lms-account-page input[type="submit"].llms-button-primary:disabled {
	background: #98a2b3;
	color: #ffffff;
	opacity: 0.72;
	cursor: not-allowed;
}

.lms-account-page .llms-button-secondary,
.lms-account-page input[type="submit"].llms-button-secondary,
.lms-account-page button.llms-button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	width: 100%;
	max-width: 100%;
	min-height: 3.125rem;
	padding: 0.8125rem 1.25rem;
	border: 0;
	border-radius: var(--lms-account-radius-sm);
	background: #fce9ea;
	color: #e30613;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	white-space: normal;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.lms-account-page .llms-button-secondary:hover,
.lms-account-page input[type="submit"].llms-button-secondary:hover,
.lms-account-page button.llms-button-secondary:hover,
.lms-account-page .llms-button-secondary:focus-visible,
.lms-account-page input[type="submit"].llms-button-secondary:focus-visible {
	background: #fbdfe1;
	color: #c8050f;
	outline: none;
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.18);
}

.lms-account-page .llms-lost-password-link,
.lms-account-page .llms-login a {
	color: #e30613;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
}

.lms-account-page .llms-lost-password-link:hover,
.lms-account-page .llms-login a:hover {
	text-decoration: underline;
}

.lms-account-page .llms-new-person-form footer.llms-form-fields {
	margin-top: 0.25rem;
}

.lms-account-page .llms-visibility-toggle {
	margin-top: 0.375rem;
}

.lms-account-page .llms-visibility-toggle button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #767c87;
	font: inherit;
	font-size: 0.875rem;
	cursor: pointer;
}

/* Confirm groups: stack fields vertically inside auth card */

.lms-auth-card .llms-form-field-confirm-group .llms-form-fields,
.lms-auth-card .llms-form-field-confirm-group > .llms-form-fields {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lms-auth-card .llms-form-field-confirm-group .llms-form-field,
.lms-auth-card .llms-form-field-confirm-group .llms-form-field[class*="llms-cols-"] {
	width: 100%;
	max-width: 100%;
}

/* Dashboard sidebar navigation */

/*
 * Student dashboard navigation styling lives in lms-dashboard.css (`.lms-sidebar`).
 * The legacy `.llms-sd-*` / `.lms-dashboard-nav` nav rules were removed to avoid
 * conflicting double-styling of the overridden navigation.php sidebar markup.
 */

.lms-account-page .llms-sd-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.lms-account-page .llms-sd-section {
	margin-bottom: 1.5rem;
}

.lms-account-page .llms-sd-section-title {
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 700;
}

.lms-account-page .llms-progress,
.lms-account-page .llms-progress-bar {
	height: 0.75rem;
	border-radius: 999px;
	background: #edeef2;
	overflow: hidden;
}

.lms-account-page .llms-progress .progress-bar-complete,
.lms-account-page .progress-bar-complete {
	height: 100%;
	border-radius: inherit;
	background: #e30613;
}

.lms-account-page .llms-loop-item,
.lms-account-page .llms-course-progress,
.lms-account-page .llms-membership,
.lms-account-page .orders-table,
.lms-account-page .llms-table-wrap {
	border: 1px solid #e7e9ee;
	border-radius: var(--lms-account-radius-sm);
}

.lms-account-page .orders-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.lms-account-page .orders-table th,
.lms-account-page .orders-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e7e9ee;
	text-align: left;
}

@media (max-width: 899.98px) {
	.lms-account-page {
		padding-top: 1.5rem;
	}

	.lms-auth-card,
	.lms-account-page__panel {
		padding: 1.25rem;
	}
}

@media (max-width: 639.98px) {
	.lms-account-page {
		padding-top: 1.25rem;
		padding-bottom: 3rem;
	}

	.lms-account-page__container {
		width: min(100% - 1.5rem, var(--lms-account-container));
	}

	.lms-auth-card {
		padding: 1.125rem;
	}

	.lms-auth-card__tab {
		font-size: 0.9375rem;
	}
}

/* Compact registration form (auth card) */

.lms-auth-card {
	padding: 1.25rem 1.375rem;
}

.lms-auth-card__tabs {
	margin-bottom: 1rem;
}

.lms-auth-card .llms-new-person-form-wrapper > .llms-form-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.625rem;
}

.lms-auth-card .llms-new-person-form-wrapper .llms-form-field label {
	margin-bottom: 0.25rem;
	font-size: 0.8125rem;
	line-height: 1.35;
}

.lms-auth-card .llms-new-person-form-wrapper .llms-form-field .llms-description {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	line-height: 1.4;
}

.lms-auth-card .llms-new-person-form-wrapper .llms-form-field input[type="text"],
.lms-auth-card .llms-new-person-form-wrapper .llms-form-field input[type="email"],
.lms-auth-card .llms-new-person-form-wrapper .llms-form-field input[type="password"],
.lms-auth-card .llms-new-person-form-wrapper .llms-form-field select {
	min-height: 2.625rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.9375rem;
}

.lms-auth-card .llms-form-field-confirm-group .llms-form-fields,
.lms-auth-card .llms-form-field-confirm-group > .llms-form-fields {
	gap: 0.5rem;
}

.lms-auth-card .llms-new-person-form-wrapper footer.llms-form-fields {
	gap: 0;
	margin-top: 0.125rem;
}

.lms-auth-card .llms-new-person-form-wrapper footer.llms-form-fields .llms-button-action,
.lms-auth-card .llms-new-person-form-wrapper footer.llms-form-fields .llms-button-primary,
.lms-auth-card .llms-new-person-form-wrapper footer.llms-form-fields input[type="submit"] {
	min-height: 2.75rem;
	padding: 0.625rem 1rem;
	font-size: 0.9375rem;
}

.lms-auth-card .llms-visibility-toggle button {
	font-size: 0.8125rem;
}

/* Make the optional voucher field visible without competing with registration. */
.lms-auth-card .llms-form-field:has(#llms-voucher-toggle) {
	grid-column: 1 / -1;
	padding-top: 0.125rem;
}

.lms-auth-card #llms-voucher-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 2.875rem;
	padding: 0.55rem 0.625rem 0.55rem 0.875rem;
	border: 1px solid rgba(227, 6, 19, 0.24);
	border-radius: var(--lms-account-radius-sm);
	background: #fff7f7;
	color: #b80511;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.lms-auth-card #llms-voucher-toggle::after {
	content: "+";
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 1.625rem;
	height: 1.625rem;
	border-radius: 999px;
	background: #e30613;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1;
}

.lms-auth-card #llms-voucher-toggle[aria-expanded="true"]::after {
	content: "\2212";
}

.lms-auth-card #llms-voucher-toggle:hover {
	border-color: rgba(227, 6, 19, 0.42);
	background: #fce9ea;
	color: #a50410;
}

.lms-auth-card #llms-voucher-toggle:focus-visible {
	border-color: #e30613;
	outline: none;
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.18);
}

/* Password strength meter */

.lms-auth-card .llms-form-field.type-html:has(> #llms-password-strength-meter) {
	grid-column: 1 / -1;
	margin-top: -0.125rem;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter {
	display: none;
	position: relative;
	overflow: visible;
	width: 100%;
	height: auto;
	min-height: 0;
	margin: 0.375rem 0 0;
	padding: 0.875rem 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	background-image: linear-gradient(#edeef2, #edeef2);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% 0.375rem;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: right;
	text-transform: none;
	letter-spacing: 0;
	color: #767c87;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter::before {
	top: 0;
	bottom: auto;
	height: 0.375rem;
	border-radius: 999px;
	transition: width 0.3s ease, background-color 0.2s ease;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.too-short::before,
.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.very-weak::before,
.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.mismatch::before {
	background: #f04438;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.weak::before {
	background: #f79009;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.medium::before {
	background: #eaaa08;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.strong::before {
	background: #12b76a;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.too-short,
.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.very-weak,
.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.mismatch {
	color: #b42318;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.weak {
	color: #b54708;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.medium {
	color: #93370d;
}

.lms-auth-card #llms-password-strength-meter.llms-password-strength-meter.strong {
	color: #027a48;
}

.lms-auth-card .llms-form-field.type-html:has(> #llms-password-strength-meter) .llms-description {
	display: block;
	margin-top: 0.375rem;
	font-size: 0.6875rem;
	line-height: 1.45;
	color: #98a2b3;
}

.lms-auth-card .llms-visibility-toggle {
	margin-top: 0.25rem;
}

.lms-auth-card .llms-visibility-toggle button {
	font-size: 0.8125rem;
}

@media (min-width: 520px) {
	.lms-auth-card .llms-new-person-form-wrapper > .llms-form-fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 0.75rem;
	}

	.lms-auth-card .llms-new-person-form-wrapper > .llms-form-fields > .llms-form-field-confirm-group,
	.lms-auth-card .llms-new-person-form-wrapper > .llms-form-fields > .llms-form-field.type-html,
	.lms-auth-card .llms-new-person-form-wrapper > .llms-form-fields > .llms-form-field.type-checkbox,
	.lms-auth-card .llms-new-person-form-wrapper > .llms-form-fields > .llms-form-field.type-radio {
		grid-column: 1 / -1;
	}

	.lms-auth-card .llms-form-field-confirm-group > .llms-form-fields {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
		align-items: start;
	}
}

@media (min-width: 900px) {
	.lms-auth-card {
		padding: 1.125rem 1.25rem;
	}

	.lms-auth-card__tabs {
		margin-bottom: 0.875rem;
	}

	.lms-auth-card__tab {
		min-height: 2.5rem;
		padding: 0.5rem 0.875rem;
		font-size: 0.9375rem;
	}
}
