/*
 * Secret Santa vibe — carried over from the original style.css (2011-2026).
 * Palette: reds #570004 / #8e0500 / #dc0004 / #990008, greens #01b246 / #085120.
 */

html, body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

body {
	background-color: #570004;
	color: #ebebeb;
	font: 16px/21px Arial, Helvetica, sans-serif;
}

p {
	font: 14px/21px Arial, Helvetica, sans-serif;
	margin: 0 0 15px 0;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0 0 15px 0;
	color: #ebebeb;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

h1 { font-size: 42px; line-height: 38px; }
h2 { font-size: 36px; line-height: 32px; }
h3 { font-size: 24px; line-height: 20px; }

input[type="submit"], input[type="button"], button[type="submit"] {
	font-size: 16px;
	margin: 15px 5px 3px 3px;
	padding: 9px 12px;
	background: #01b246;
	color: #fff;
	text-transform: uppercase;
	border: 0px;
	-webkit-appearance: none;
	border-radius: 5px;
	box-shadow: 0px 0px 3px 1px #063616;
	background-image: linear-gradient(to top, #085120 0%, #01b246 100%);
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	cursor: pointer;
}

input[type="submit"]:hover, input[type="button"]:hover, button[type="submit"]:hover {
	background-image: none;
	background-color: #085120;
}

#login-box {
	margin: 25px auto 25px auto;
	padding: 25px 50px;
	display: table;
	background-color: #e00006;
	border-radius: 10px;
	box-shadow: 0px 0px 15px 5px #2f0002;
	background-image: linear-gradient(to top, #8E0500 0%, #DC0004 100%);
	min-width: 380px;
	box-sizing: border-box;
}

#login-box h1 {
	text-align: center;
}

#login-box p {
	text-align: center;
}

.form-items input[type="text"],
.form-items input[type="password"],
.form-items input[type="email"],
textarea {
	box-sizing: border-box;
	border-radius: 5px;
	padding: 9px;
	border: 1px solid #570004;
	background-color: #990008;
	font-size: 16px;
	color: #ebebeb;
	box-shadow: 0px 0px 3px 1px #e20006;
	float: left;
	width: 75%;
	font: 16px/21px Arial, Helvetica, sans-serif;
}

.form-items label {
	width: 25%;
	float: left;
	padding: 9px 0;
}

.form-items {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.form-items li {
	margin: 0 0 7px 0;
}

.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }

#message {
	width: 460px;
	padding: 25px;
	text-align: center;
	position: absolute;
	display: table;
	margin-left: -255px;
	top: 50px;
	left: 50%;
	white-space: normal;
	z-index: 100;
	font-size: 18px;
	font-weight: bold;
	background-color: #00762f;
	border: 3px solid #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 15px 5px #000;
	color: #ebebeb;
}

#message.error {
	background-color: #8e0500;
}

/* "Continue with Google" under the login box */
.google-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	color: #333 !important;
	font-size: 14px;
	font-weight: bold;
	padding: 9px 18px;
	border-radius: 5px;
	box-shadow: 0px 0px 3px 1px #2f0002;
	text-decoration: none !important;
}

.google-btn:hover {
	background: #f1f1f1;
}

/* Links under the login box (register / forgot password) */
.below-box {
	text-align: center;
	font-size: 13px;
	margin: 0 auto;
	display: table;
}

.below-box a {
	color: #ebebeb;
	opacity: 0.85;
	margin: 0 10px;
}

.below-box a:hover {
	opacity: 1;
}

/* Field-level validation notes */
.field-error {
	clear: both;
	display: block;
	padding: 2px 0 0 25%;
	font-size: 12px;
	color: #ffd9d9;
}

@media screen and (max-width: 780px) {
	#login-box {
		min-width: 0;
		width: 88%;
		padding: 25px;
	}

	#message {
		top: 0;
		left: 0;
		white-space: normal;
		position: relative;
		margin: 0 auto 15px auto;
		padding: 5%;
		width: 80%;
	}

	.field-error {
		padding-left: 0;
	}
}
