.auth-page {
	max-width: 480px;
	margin: 0 auto;
	padding: 30px 24px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.auth-page h1 {
	font-size: 26px;
	margin-bottom: 8px;
	color: #222;
}

.auth-page .auth-subtitle {
	color: #666;
	margin-bottom: 24px;
	font-size: 14px;
}

.auth-form .form-row {
	margin-bottom: 16px;
}

.auth-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #333;
	font-size: 14px;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"],
.auth-form select,
.auth-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}

.auth-form textarea {
	min-height: 100px;
	resize: vertical;
}

.auth-captcha {
	display: flex;
	align-items: center;
	gap: 12px;
}

.auth-captcha img {
	border: 1px solid #ddd;
	border-radius: 6px;
	height: 50px;
}

.auth-captcha input {
	flex: 1;
}

.auth-submit {
	width: 100%;
	padding: 12px 16px;
	background: #c0392b;
	color: #fff;
	border: 0;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 8px;
}

.auth-submit:hover {
	background: #a93226;
}

.auth-divider {
	text-align: center;
	margin: 24px 0 16px;
	color: #888;
	font-size: 13px;
	position: relative;
}

.auth-divider:before,
.auth-divider:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 40%;
	height: 1px;
	background: #e0e0e0;
}

.auth-divider:before { left: 0; }
.auth-divider:after { right: 0; }

.auth-facebook {
	display: block;
	text-align: center;
	padding: 12px;
	background: #3b5998;
	color: #fff !important;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.auth-facebook:hover {
	background: #2d4373;
}

.auth-links {
	margin-top: 18px;
	text-align: center;
	font-size: 14px;
}

.auth-links a {
	color: #c0392b;
	text-decoration: none;
}

.auth-error h1 {
	color: #c0392b;
}
