* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #e8e8e8;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	padding: 48px 44px;
	width: 100%;
	max-width: 440px;
}

.logo {
	width: 220px;
	display: block;
	margin: 0 auto 32px;
}

.title {
	color: #1B365D;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
}

.subtitle {
	color: #555;
	font-size: 14px;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 28px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 13px;
	color: #666;
	margin-bottom: 6px;
}

.form-input {
	width: 100%;
	padding: 10px 0;
	border: none;
	border-bottom: 1px solid #ccc;
	font-size: 15px;
	color: #333;
	background: transparent;
	outline: none;
	transition: border-color 0.2s;
	font-family: inherit;
}

.form-input:focus {
	border-bottom-color: #0099D2;
}

.form-input::placeholder {
	color: #aaa;
}

.btn-primary {
	width: 100%;
	padding: 14px;
	background: #1B365D;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	font-family: inherit;
	margin-top: 4px;
}

.btn-primary:hover {
	background: #142a4a;
}

.back-link {
	display: block;
	text-align: center;
	margin-top: 20px;
	font-size: 13px;
	color: #0099D2;
	text-decoration: none;
}

.back-link:hover {
	text-decoration: underline;
}

/* ERROR MESSAGES */
.messageTable {
	border: none !important;
	background: transparent !important;
	margin-bottom: 16px;
}

.messageTable td {
	border: none !important;
	padding: 0 !important;
	color: #D32F2F !important;
	font-size: 13px !important;
}

.messageTable .messageCell h4 {
	display: none;
}

/* SUCCESS */
.success-box {
	background: #E8F8E8;
	border-left: 4px solid #2E7D32;
	padding: 18px;
	border-radius: 0 4px 4px 0;
	margin-bottom: 20px;
}

.success-box h3 {
	color: #2E7D32;
	font-size: 16px;
	margin-bottom: 8px;
}

.success-box p {
	color: #333;
	font-size: 14px;
	line-height: 1.5;
}

.footer {
	text-align: center;
	font-size: 11px;
	color: #999;
	margin-top: 28px;
}

@media (max-width: 480px) {
	.card {
		margin: 16px;
		padding: 36px 24px;
	}

	.logo {
		width: 180px;
	}
}