/* ==========================================
   Login Pages
   ========================================== */
.login-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.login-page main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}
.login-box {
	max-width: 400px;
	width: 100%;
}
.login-box h2 {
	font-size: 1.125rem;
	font-weight: 400;
	color: #333;
	margin-bottom: 1rem;
	text-align: center;
}

/* Heading icon */
.heading-icon {
	height: 3em;
	width: auto;
	vertical-align: middle;
	margin-right: 0.5rem;
}

/* Welcome message and verse */
.welcome-message {
	text-align: center;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.verse {
	font-family: 'Noto Serif', serif;
	font-style: italic;
	font-size: 0.9rem;
	color: #666;
	text-align: center;
	margin: 0 0 1.5rem 0;
	padding: 0.75rem 1rem;
	background: #f8f8f8;
	border-left: 3px solid var(--lsm-blue);
	border-radius: 0 4px 4px 0;
}

.verse cite {
	display: block;
	margin-top: 0.5rem;
	font-style: normal;
	font-weight: 500;
	color: var(--lsm-blue);
}

/* Password toggle eye icon */
.password-wrapper {
	position: relative;
}
.password-wrapper input {
	padding-right: 2.5rem;
}
.password-toggle {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #999;
	cursor: pointer;
	padding: 0.25rem;
}
.password-toggle:hover,
.password-toggle:focus {
	color: #555;
	background: transparent;
	outline: none;
}

/* Error message */
.error-message {
	background: #f8d7da;
	color: #721c24;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

/* Field header with label and right-aligned link */
.field-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.25rem;
}
.field-header label {
	margin-bottom: 0;
}
.field-link {
	font-size: 0.85rem;
	color: var(--lsm-blue);
	text-decoration: none;
}
.field-link:hover {
	text-decoration: underline;
}

/* Button row for login forms */
.button-row {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}
.button-row .button {
	margin: 0;
}

/* Hollow button style */
.button.hollow {
	background: transparent;
	border: 1px solid var(--lsm-blue);
	color: var(--lsm-blue);
}
.button.hollow:hover {
	background: var(--lsm-blue);
	color: white;
}

/* Alt action link at bottom */
.alt-action {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
	font-size: 0.9rem;
	color: #666;
}
.alt-action a {
	color: var(--lsm-blue);
}
