/* Shared styles for standalone account pages (delete account, reset password, etc.) */

body {
	margin: 0;
	padding: 0;
	background-color: #000;
	background-image: url('/images/ui3/background1.jpg');
	background-repeat: repeat;
	background-position: center top;
	min-height: 100vh;
}

.account-page {
	max-width: 460px;
	margin: 0 auto;
	padding: 30px 20px 60px;
}

.account-logo {
	text-align: center;
	margin-bottom: 24px;
}

.account-logo img {
	max-width: 280px;
	width: 100%;
}

.account-card {
	background-color: #191817;
	border-style: solid;
	border-width: 10px;
	-moz-border-image: url(/images/ui3/window3-border.jpg) 10 repeat;
	-webkit-border-image: url(/images/ui3/window3-border.jpg) 10 repeat;
	-o-border-image: url(/images/ui3/window3-border.jpg) 10 repeat;
	border-image: url(/images/ui3/window3-border.jpg) 10 fill repeat;
	padding: 24px;
	box-shadow: 0px 5px 20px rgba(0,0,0,0.8);
}

.account-card h2 {
	text-align: center;
	margin: 0 0 20px;
	font-size: 22px;
	color: #e0d6c2;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.account-subtitle {
	color: #9a8e7e;
	text-align: center;
	line-height: 1.5;
	margin: 0 0 18px;
}

.account-card p {
	color: #b0a898;
	line-height: 1.5;
	margin: 0 0 14px;
}

.account-card strong {
	color: #e0d6c2;
}

.field-group {
	margin-bottom: 16px;
}

.field-group label {
	display: block;
	color: #9a8e7e;
	font-size: 13px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.field-group input[type=text],
.field-group input[type=email],
.field-group input[type=password] {
	width: 100%;
	padding: 10px 12px;
	background-color: #0e0b06;
	border: 1px solid #3a3226;
	color: #e0d6c2;
	font-size: 15px;
	border-radius: 3px;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.field-group input:focus {
	border-color: #7a6a52;
}

.btn {
	display: block;
	width: 100%;
	padding: 12px 20px;
	border: none;
	border-radius: 3px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: opacity 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.btn:hover {
	opacity: 0.9;
	text-decoration: none;
	box-shadow: 0 0 12px rgba(255,255,255,0.1);
}

.btn-primary {
	background-color: #4a3c28;
	border: 1px solid #6a5a42;
	color: #e0d6c2;
}

.btn-danger {
	background-color: #6b1a1a;
	border: 1px solid #8b2a2a;
	color: #ffcccc;
}

.btn-danger:hover {
	box-shadow: 0 0 16px rgba(180,0,0,0.3);
}

.btn-secondary {
	background-color: transparent;
	border: 1px solid #3a3226;
	color: #9a8e7e;
	margin-top: 10px;
}

.btn-secondary:hover {
	border-color: #6a5a42;
	color: #e0d6c2;
}

.warning-box {
	background-color: rgba(100,20,20,0.3);
	border: 1px solid #6b2a2a;
	border-radius: 3px;
	padding: 14px;
	margin-bottom: 20px;
	color: #e08080;
	line-height: 1.5;
}

.warning-box strong {
	color: #ff9999;
}

.success-box {
	background-color: rgba(20,80,20,0.3);
	border: 1px solid #2a6b2a;
	border-radius: 3px;
	padding: 14px;
	margin-bottom: 20px;
	color: #80e080;
	line-height: 1.5;
}

.account-email {
	background-color: rgba(255,255,255,0.05);
	border-radius: 3px;
	padding: 10px 14px;
	margin-bottom: 18px;
	text-align: center;
	color: #e0d6c2;
	font-size: 15px;
	border: 1px solid #2a2520;
}

.back-link {
	display: block;
	text-align: center;
	margin-top: 20px;
	color: #6a5a42;
	font-size: 13px;
}

.back-link a {
	color: #9a8e7e;
	text-decoration: none;
}

.back-link a:hover {
	color: #e0d6c2;
}
