/**
 * Roadpress Login Page Styles
 *
 * Minimal, clean login template using Inter font.
 * Full-screen centered card with subtle shadow.
 *
 * @package    Roadpress
 * @subpackage Public/Templates/Login
 * @since      1.3.3
 */

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ── Body ──────────────────────────────────────────────── */
.roadpress-login-body {
	font-family: var(--roadpress-login-font, 'Inter', sans-serif);
	background-color: #f5f5f5;
	color: #111;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ── Wrapper ───────────────────────────────────────────── */
.roadpress-login-wrapper {
	width: 100%;
	max-width: 420px;
	padding: 16px;
}

/* ── Card ──────────────────────────────────────────────── */
.roadpress-login-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 26px 26px 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ── Logo ──────────────────────────────────────────────── */
.roadpress-login-logo {
	text-align: center;
	margin-bottom: 32px;
}

.roadpress-login-logo img {
	height: 28px;
	width: auto;
}

/* ── Heading ───────────────────────────────────────────── */
.roadpress-login-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}

.roadpress-login-subtitle {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 28px;
}

/* ── Error ─────────────────────────────────────────────── */
.roadpress-login-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #dc2626;
	font-size: 13px;
	padding: 10px 14px;
	border-radius: 8px;
	margin-bottom: 20px;
	line-height: 1.5;
}

/* ── Form ──────────────────────────────────────────────── */
.roadpress-login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ── Fields ────────────────────────────────────────────── */
.roadpress-login-field label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
	color: #111;
}

.roadpress-login-field input {
	width: 100%;
	height: 42px;
	padding: 0 14px;
	font-family: inherit;
	font-size: 14px;
	color: #111;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.roadpress-login-field input::placeholder {
	color: #9ca3af;
}

.roadpress-login-field input:focus {
	border-color: #111;
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

/* ── Password header (label + forgot link) ─────────────── */
.roadpress-login-password-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.roadpress-login-forgot {
	font-size: 13px;
	color: #6b7280;
	text-decoration: none;
	transition: color 0.15s;
}

.roadpress-login-forgot:hover {
	color: #111;
}

/* ── Submit ────────────────────────────────────────────── */
.roadpress-login-submit {
	width: 100%;
	height: 44px;
	margin-top: 4px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: #111;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.roadpress-login-submit:hover {
	background: #333;
}

.roadpress-login-submit:active {
	background: #000;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 480px) {
	.roadpress-login-card {
		padding: 26px 26px 32px;
		border-radius: 12px;
	}

	.roadpress-login-title {
		font-size: 18px;
	}
}
