/* ===== Auth utility pages (forgot-password, reset-password) ===== */
/* Dark centered card matching the /login page treatment. */

/* Page: full-height centered dark wrapper */
.auth-page {
	min-height: 100vh;
	background: var(--np-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.auth-wrap {
	width: 100%;
	max-width: 28rem;
}

/* Brand header */
.auth-brand {
	text-align: center;
	margin-bottom: 2rem;
}

.auth-brand-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	letter-spacing: -0.02em;
}

.auth-brand-accent {
	color: var(--np-magenta);
}

.auth-brand-sub {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Card container */
.auth-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Form label + input */
.auth-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.375rem;
}

.auth-input {
	width: 100%;
	padding: 0.625rem 1rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	font-size: 0.875rem;
	font-family: inherit;
	transition:
		border-color 0.15s,
		background-color 0.15s;
}

.auth-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.auth-input:focus {
	outline: none;
	border-color: var(--np-magenta);
	background: rgba(255, 255, 255, 0.1);
}

/* Submit button */
.auth-submit {
	width: 100%;
	padding: 0.625rem 1rem;
	border-radius: 0.5rem;
	background: var(--np-magenta);
	color: white;
	font-weight: 600;
	font-size: 0.875rem;
	font-family: inherit;
	border: none;
	cursor: pointer;
	transition: background-color 0.15s;
}

.auth-submit:hover {
	background: var(--np-orange);
}

.auth-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Inline error message */
.auth-error {
	font-size: 0.875rem;
	color: var(--color-error-input);
	background: rgba(248, 113, 113, 0.1);
	border: 1px solid rgba(248, 113, 113, 0.2);
	border-radius: 0.5rem;
	padding: 0.625rem 1rem;
}

/* Success message */
.auth-success {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin: 0;
}

/* Footer link row */
.auth-foot {
	text-align: center;
	font-size: 0.8125rem;
	margin: 0;
}

.auth-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: underline;
	transition: color 0.15s;
}

.auth-link:hover {
	color: white;
}
