/**
 * TY Bible Quiz — public-facing styles.
 * All selectors scoped under .ty-bq-quiz to avoid theme conflicts.
 */

/* -------------------------------------------------------------------------
   Wrapper & box-sizing reset
------------------------------------------------------------------------- */
.ty-bq-quiz {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	font-family: inherit;
	box-sizing: border-box;
}

.ty-bq-quiz *,
.ty-bq-quiz *::before,
.ty-bq-quiz *::after {
	box-sizing: inherit;
}

/* -------------------------------------------------------------------------
   Level-select headings
------------------------------------------------------------------------- */
.ty-bq-heading {
	text-align: center;
	font-size: 1.8em;
	margin: 0 0 8px;
	color: inherit;
}

.ty-bq-subheading {
	text-align: center;
	color: #666;
	margin: 0 0 32px;
	font-size: 1em;
}

/* -------------------------------------------------------------------------
   Cards — stack on mobile, row on >= 640 px
------------------------------------------------------------------------- */
.ty-bq-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 640px) {
	.ty-bq-cards {
		flex-direction: row;
		align-items: stretch;
	}
}

/* -------------------------------------------------------------------------
   Card
------------------------------------------------------------------------- */
.ty-bq-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
	background: #fff;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ty-bq-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

/* Coloured header strip */
.ty-bq-card__header {
	padding: 24px 20px 20px;
	text-align: center;
}

.ty-bq-card--1 .ty-bq-card__header { background: #d4edda; }
.ty-bq-card--2 .ty-bq-card__header { background: #fff3cd; }
.ty-bq-card--3 .ty-bq-card__header { background: #f8d7da; }

/* Large level number */
.ty-bq-card__level-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	font-size: 1.6em;
	font-weight: 800;
	line-height: 1;
}

.ty-bq-card--1 .ty-bq-card__level-num { background: #155724; color: #fff; }
.ty-bq-card--2 .ty-bq-card__level-num { background: #856404; color: #fff; }
.ty-bq-card--3 .ty-bq-card__level-num { background: #721c24; color: #fff; }

/* Body */
.ty-bq-card__body {
	flex: 1;
	padding: 20px 20px 12px;
	text-align: center;
}

.ty-bq-card__body h3 {
	margin: 0 0 8px;
	font-size: 1.25em;
	font-weight: 700;
}

.ty-bq-card__timer {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: 600;
	margin-bottom: 12px;
}

.ty-bq-card--1 .ty-bq-card__timer { background: #d4edda; color: #155724; }
.ty-bq-card--2 .ty-bq-card__timer { background: #fff3cd; color: #856404; }
.ty-bq-card--3 .ty-bq-card__timer { background: #f8d7da; color: #721c24; }

.ty-bq-card__desc {
	font-size: 0.9em;
	color: #555;
	margin: 0;
	line-height: 1.5;
}

/* Footer / button */
.ty-bq-card__footer {
	padding: 16px 20px 24px;
}

.ty-bq-start-btn {
	display: block;
	width: 100%;
	padding: 11px 20px;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}

.ty-bq-card--1 .ty-bq-start-btn              { background: #28a745; color: #fff; }
.ty-bq-card--1 .ty-bq-start-btn:hover        { background: #218838; }

.ty-bq-card--2 .ty-bq-start-btn              { background: #e6a800; color: #fff; }
.ty-bq-card--2 .ty-bq-start-btn:hover        { background: #cc9600; }

.ty-bq-card--3 .ty-bq-start-btn              { background: #dc3545; color: #fff; }
.ty-bq-card--3 .ty-bq-start-btn:hover        { background: #c82333; }

.ty-bq-start-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* -------------------------------------------------------------------------
   Error notice
------------------------------------------------------------------------- */
.ty-bq-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	padding: 12px 16px;
	margin-bottom: 20px;
	font-size: 0.95em;
}

/* -------------------------------------------------------------------------
   Countdown screen
------------------------------------------------------------------------- */
.ty-bq-countdown {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	background: #1a1a2e;
	border-radius: 8px;
}

.ty-bq-countdown__num {
	font-size: 6em;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	animation: ty-bq-pop 0.35s ease-out;
}

.ty-bq-countdown__num--go {
	color: #28a745;
}

@keyframes ty-bq-pop {
	from { transform: scale( 1.5 ); opacity: 0.4; }
	to   { transform: scale( 1 );   opacity: 1; }
}

/* -------------------------------------------------------------------------
   Game header — timer bar + answered count
------------------------------------------------------------------------- */
.ty-bq-game-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 28px;
}

.ty-bq-timer-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ty-bq-timer-bar {
	flex: 1;
	height: 10px;
	background: #e0e0e0;
	border-radius: 5px;
	overflow: hidden;
}

.ty-bq-timer-fill {
	height: 100%;
	background: #28a745;
	border-radius: 5px;
	transition: width 0.9s linear, background 0.4s ease;
}

.ty-bq-timer-fill--urgent {
	background: #dc3545;
}

.ty-bq-timer-count {
	font-size: 1.3em;
	font-weight: 700;
	min-width: 36px;
	text-align: right;
	transition: color 0.3s ease;
}

.ty-bq-timer-count--urgent {
	color: #dc3545;
}

.ty-bq-score-display {
	font-size: 0.9em;
	color: #555;
	white-space: nowrap;
}

.ty-bq-score-display #ty-bq-answered-count {
	font-weight: 700;
	font-size: 1.1em;
	color: #333;
}

/* -------------------------------------------------------------------------
   Question area
------------------------------------------------------------------------- */
.ty-bq-question-num {
	font-size: 0.78em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	margin: 0 0 10px;
}

.ty-bq-question-text {
	font-size: 1.15em;
	font-weight: 600;
	line-height: 1.55;
	margin: 0 0 24px;
	color: #1a1a2e;
}

/* -------------------------------------------------------------------------
   Answer option buttons
------------------------------------------------------------------------- */
.ty-bq-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ty-bq-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 13px 16px;
	background: #243450;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 1em;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 0.1s ease, border-color 0.1s ease;
	line-height: 1.4;
	-webkit-tap-highlight-color: transparent;
}

.ty-bq-option:hover:not(:disabled) {
	background: #181209;
	border-color: #adb5bd;
}

.ty-bq-option:active:not(:disabled) {
	background: #dee2e6;
	border-color: #6c757d;
}

.ty-bq-option:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.ty-bq-option-key {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #dee2e6;
	font-size: 0.82em;
	font-weight: 700;
	flex-shrink: 0;
	color: #495057;
}

.ty-bq-option-val {
	flex: 1;
}

/* -------------------------------------------------------------------------
   End / loading screen
------------------------------------------------------------------------- */
.ty-bq-end-screen {
	text-align: center;
	padding: 52px 20px;
}

.ty-bq-timesup {
	font-size: 2.2em;
	font-weight: 900;
	color: #1a1a2e;
	margin: 0 0 12px;
}

.ty-bq-submitting {
	font-size: 1.1em;
	color: #555;
	margin: 0;
	animation: ty-bq-pulse 1.4s ease-in-out infinite;
}

@keyframes ty-bq-pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.4; }
}

/* -------------------------------------------------------------------------
   Results screen
------------------------------------------------------------------------- */
.ty-bq-results {
	padding: 8px 0 24px;
}

/* Score summary */
.ty-bq-score-summary {
	text-align: center;
	padding: 28px 20px 24px;
	border-bottom: 1px solid #eee;
	margin-bottom: 28px;
}

.ty-bq-score-num {
	font-size: 5em;
	font-weight: 900;
	color: #28a745;
	line-height: 1;
	margin-bottom: 4px;
}

.ty-bq-score-label {
	font-size: 1.1em;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ty-bq-score-sub {
	font-size: 0.9em;
	color: #888;
	margin: 0;
}

/* Certificate */
.ty-bq-certificate {
	border: 3px double #c8a951;
	border-radius: 6px;
	background: #fffef5;
	margin: 0 0 28px;
	overflow: hidden;
}

.ty-bq-cert-header {
	background: #1a1a2e;
	color: #c8a951;
	text-align: center;
	padding: 18px 20px 14px;
}

.ty-bq-cert-logo {
	font-size: 0.75em;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0 0 4px;
	opacity: 0.8;
}

.ty-bq-cert-title {
	font-size: 1.3em;
	font-weight: 700;
	margin: 0;
	color: #c8a951;
}

.ty-bq-cert-body {
	text-align: center;
	padding: 24px 24px 28px;
}

.ty-bq-cert-presented {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	margin: 0 0 6px;
}

.ty-bq-cert-name {
	font-size: 1.6em;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 10px;
}

.ty-bq-cert-detail {
	font-size: 0.95em;
	color: #555;
	margin: 0 0 14px;
}

.ty-bq-cert-tier {
	font-size: 1.4em;
	font-weight: 800;
	color: #c8a951;
	margin: 0 0 16px;
	font-style: italic;
}

.ty-bq-cert-date {
	font-size: 0.8em;
	color: #aaa;
	margin: 0;
}

/* Download certificate */
.ty-bq-download-cert {
	text-align: center;
	margin: 14px 0 24px;
}

.ty-bq-download-cert-btn {
	padding: 9px 28px;
	background: transparent;
	color: #B8860B;
	border: 2px solid #B8860B;
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, color 0.15s ease;
}

.ty-bq-download-cert-btn:hover:not(:disabled) {
	background: #B8860B;
	color: #fff;
}

.ty-bq-download-cert-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* See My Answers toggle */
.ty-bq-see-answers {
	text-align: center;
	margin: 0 0 16px;
}

.ty-bq-see-answers-btn {
	padding: 8px 24px;
	background: transparent;
	color: #555;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 0.88em;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.ty-bq-see-answers-btn:hover {
	border-color: #888;
	color: #222;
}

/* Review panel — hidden wrapper, no extra spacing until open */
.ty-bq-review-panel {
	margin-bottom: 8px;
}

/* Share buttons */
.ty-bq-share {
	text-align: center;
	margin-bottom: 24px;
}

.ty-bq-share-label {
	font-size: 0.9em;
	color: #666;
	margin: 0 0 12px;
	font-weight: 600;
}

.ty-bq-share-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.ty-bq-share-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: opacity 0.15s ease;
}

.ty-bq-share-btn:hover { opacity: 0.85; color: #fff; }

.ty-bq-share-wa { background: #25d366; }
.ty-bq-share-x  { background: #000; }
.ty-bq-share-fb { background: #1877f2; }

/* Play Again */
.ty-bq-play-again {
	text-align: center;
}

.ty-bq-play-again-btn {
	padding: 12px 36px;
	background: #1a1a2e;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease;
}

.ty-bq-play-again-btn:hover { background: #2d2d4e; }

/* -------------------------------------------------------------------------
   Answer review table (results screen)
------------------------------------------------------------------------- */
.ty-bq-review {
	margin-bottom: 32px;
}

.ty-bq-review-title {
	font-size: 1.1em;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 12px;
}

.ty-bq-review-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.ty-bq-review-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
}

.ty-bq-review-table thead th {
	padding: 9px 12px;
	text-align: left;
	background: #1a1a2e;
	color: #fff;
	font-weight: 600;
	white-space: nowrap;
}

.ty-bq-review-table td {
	padding: 10px 12px;
	vertical-align: top;
	line-height: 1.45;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ty-bq-review-correct { background: #d4edda; }
.ty-bq-review-wrong   { background: #f8d7da; }

.ty-bq-review-correct:hover { background: #c3e6cb; }
.ty-bq-review-wrong:hover   { background: #f5c6cb; }

.ty-bq-review-col-num {
	width: 36px;
	font-weight: 700;
	color: #555;
	text-align: center;
	white-space: nowrap;
}

.ty-bq-review-col-q {
	max-width: 260px;
}

.ty-bq-review-col-chosen,
.ty-bq-review-col-right {
	max-width: 180px;
}

.ty-bq-review-col-ref {
	white-space: nowrap;
	font-size: 0.85em;
	color: #555;
}

@media ( max-width: 600px ) {
	.ty-bq-review-col-ref {
		display: none;
	}
}

/* -------------------------------------------------------------------------
   Leaderboard
------------------------------------------------------------------------- */
.ty-bq-leaderboard {
	max-width: 760px;
}

.ty-bq-lb-title {
	text-align: center;
	font-size: 1.8em;
	margin: 0 0 24px;
}

/* ----- Tab rows ----- */
.ty-bq-lb-level-tabs,
.ty-bq-lb-period-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.ty-bq-lb-period-tabs {
	margin-bottom: 24px;
}

/* Level tabs — pill style */
.ty-bq-lb-tab {
	flex: 1;
	padding: 10px 16px;
	border: 2px solid #dee2e6;
	border-radius: 6px;
	background: #fff;
	color: #444;
	font-size: 0.95em;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ty-bq-lb-tab:hover {
	border-color: #aaa;
	background: #f8f9fa;
}

.ty-bq-lb-tab[data-level="1"].active { border-color: #28a745; background: #28a745; color: #fff; }
.ty-bq-lb-tab[data-level="2"].active { border-color: #e6a800; background: #e6a800; color: #fff; }
.ty-bq-lb-tab[data-level="3"].active { border-color: #dc3545; background: #dc3545; color: #fff; }

/* Period tabs — underline style */
.ty-bq-lb-period-tab {
	flex: none;
	padding: 6px 4px;
	border: none;
	border-bottom: 3px solid transparent;
	background: transparent;
	color: #666;
	font-size: 0.9em;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.ty-bq-lb-period-tab:hover {
	color: #222;
	border-bottom-color: #ccc;
}

.ty-bq-lb-period-tab.active {
	color: #1a1a2e;
	border-bottom-color: #1a1a2e;
}

/* ----- Guest notice ----- */
.ty-bq-lb-guest-notice {
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
	padding: 10px 16px;
	font-size: 0.9em;
	margin-bottom: 20px;
	color: #856404;
}

.ty-bq-lb-guest-notice a {
	color: #856404;
	font-weight: 600;
}

/* ----- Empty state ----- */
.ty-bq-lb-empty {
	text-align: center;
	color: #888;
	padding: 32px 0;
	font-size: 0.95em;
}

/* ----- Table ----- */
.ty-bq-lb-table-wrap {
	overflow-x: auto;
}

.ty-bq-lb-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95em;
}

.ty-bq-lb-table thead th {
	padding: 10px 14px;
	text-align: left;
	background: #1a1a2e;
	color: #fff;
	font-weight: 600;
	white-space: nowrap;
}

.ty-bq-lb-table tbody tr {
	border-bottom: 1px solid #e9ecef;
	transition: background 0.1s ease;
}

.ty-bq-lb-table tbody tr:last-child {
	border-bottom: none;
}

.ty-bq-lb-table tbody tr:hover {
	background: #f8f9fa;
}

.ty-bq-lb-table td {
	padding: 12px 14px;
	vertical-align: middle;
}

/* ----- Medal rows ----- */
.ty-bq-lb-row.ty-bq-lb-gold   { background: #fffbe6; }
.ty-bq-lb-row.ty-bq-lb-silver { background: #f5f5f5; }
.ty-bq-lb-row.ty-bq-lb-bronze { background: #fdf1e9; }

.ty-bq-lb-row.ty-bq-lb-gold:hover   { background: #fff7cc; }
.ty-bq-lb-row.ty-bq-lb-silver:hover { background: #ebebeb; }
.ty-bq-lb-row.ty-bq-lb-bronze:hover { background: #f7e5d4; }

/* Rank column */
.ty-bq-lb-col-rank {
	width: 54px;
	font-weight: 700;
	color: #888;
	text-align: center;
}

.ty-bq-lb-row.ty-bq-lb-gold   .ty-bq-lb-col-rank { color: #b8860b; }
.ty-bq-lb-row.ty-bq-lb-silver .ty-bq-lb-col-rank { color: #777; }
.ty-bq-lb-row.ty-bq-lb-bronze .ty-bq-lb-col-rank { color: #a0522d; }

/* Score / out-of total */
.ty-bq-lb-col-score {
	font-weight: 700;
	white-space: nowrap;
}

.ty-bq-lb-total {
	font-weight: 400;
	color: #888;
}

/* Tier label */
.ty-bq-lb-col-tier {
	font-size: 0.85em;
	color: #555;
	font-style: italic;
}

@media ( max-width: 480px ) {
	.ty-bq-lb-col-tier {
		display: none;
	}

	.ty-bq-lb-tab {
		font-size: 0.85em;
		padding: 8px 10px;
	}
}

/* -------------------------------------------------------------------------
   Auth popup (login / register to save guest score)
------------------------------------------------------------------------- */
.ty-bq-auth-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.ty-bq-auth-modal {
	background: #fff;
	border-radius: 10px;
	padding: 32px 28px 28px;
	width: 100%;
	max-width: 400px;
	position: relative;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	animation: ty-bq-modal-in 0.22s ease-out;
}

@keyframes ty-bq-modal-in {
	from { transform: scale(0.92); opacity: 0; }
	to   { transform: scale(1);    opacity: 1; }
}

.ty-bq-auth-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.5em;
	line-height: 1;
	color: #aaa;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 4px;
	font-family: inherit;
	transition: color 0.15s ease;
}

.ty-bq-auth-close:hover { color: #333; }

.ty-bq-auth-title {
	font-size: 1.25em;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 6px;
}

.ty-bq-auth-intro {
	font-size: 0.9em;
	color: #666;
	margin: 0 0 20px;
}

/* Tabs */
.ty-bq-auth-tabs {
	display: flex;
	border-bottom: 2px solid #e9ecef;
	margin-bottom: 20px;
}

.ty-bq-auth-tab {
	flex: 1;
	padding: 9px 16px;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	background: none;
	font-size: 0.9em;
	font-weight: 600;
	color: #888;
	cursor: pointer;
	font-family: inherit;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.ty-bq-auth-tab:hover { color: #444; }

.ty-bq-auth-tab--active {
	color: #1a1a2e;
	border-bottom-color: #1a1a2e;
}

/* Form fields */
.ty-bq-auth-field {
	margin: 0 0 14px;
}

.ty-bq-auth-field label {
	display: block;
	font-size: 0.85em;
	font-weight: 600;
	color: #444;
	margin-bottom: 5px;
}

.ty-bq-auth-field input {
	display: block;
	width: 100%;
	padding: 9px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 0.95em;
	font-family: inherit;
	color: #333;
	transition: border-color 0.15s ease;
}

.ty-bq-auth-field input:focus {
	outline: none;
	border-color: #1a1a2e;
	box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.12);
}

/* Remember me */
.ty-bq-auth-remember {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.85em;
	color: #555;
	margin: 0 0 14px;
	cursor: pointer;
}

.ty-bq-auth-remember input[type="checkbox"] {
	width: auto;
	margin: 0;
}

/* Forgot password */
.ty-bq-auth-forgot {
	display: block;
	font-size: 0.82em;
	color: #888;
	text-align: right;
	margin: -8px 0 12px;
	text-decoration: underline;
}

.ty-bq-auth-forgot:hover { color: #1a1a2e; }

/* Error */
.ty-bq-auth-error {
	font-size: 0.85em;
	color: #721c24;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	padding: 8px 12px;
	margin: 0 0 12px;
}

/* Submit */
.ty-bq-auth-submit {
	display: block;
	width: 100%;
	padding: 11px 20px;
	background: #1a1a2e;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	margin-top: 6px;
	transition: background 0.15s ease;
}

.ty-bq-auth-submit:hover:not(:disabled) { background: #2d2d4e; }

.ty-bq-auth-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Success state */
.ty-bq-auth-success {
	text-align: center;
	padding: 28px 0;
	font-size: 1.1em;
	font-weight: 600;
	color: #155724;
}