.subtitle {
	font-size: 0.95em;
	color: #7f8c8d;
	margin-bottom: 5px;
}

.tagline {
	font-size: 0.85em;
	color: #95a5a6;
	font-style: italic;
}

.content {
	margin: auto auto;
	padding: 0 1.5em 0 1.5em;
}
@media (max-width: 500px) { .content { margin: 0 auto; } }

.login-form {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-left: 4px solid #3498db;
	padding: 30px;
	border-radius: 8px;
	width: fit-content;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: 500;
	color: #555;
	margin-bottom: 8px;
	font-size: 0.95em;
}

input[type="text"],
input[type="password"] {
	width: 15em;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1em;
	font-family: inherit;
	transition: all 0.3s ease;
	background-color: white;
}

input[type="text"]:focus,
input[type="password"]:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-actions {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.btn-login {
	width: 15em;
	padding: 14px;
	background-color: #3498db;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 1.05em;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.btn-login:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-login:active {
	transform: translateY(0);
}

.forgot-password {
	text-align: center;
	margin-top: 15px;
}

.forgot-password a {
	color: #3498db;
	text-decoration: none;
	font-size: 0.9em;
	transition: color 0.3s ease;
}

.forgot-password a:hover {
	color: #2980b9;
	text-decoration: underline;
}

.info-box {
	background-color: white;
	border: 1px solid #e0e0e0;
	padding: 15px;
	border-radius: 6px;
	margin-top: 20px;
	font-size: 0.9em;
	color: #666;
	text-align: center;
}

.info-box strong {
	color: #3498db;
	font-weight: 600;
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #3498db;
}

.checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
	font-size: 0.9em;
	cursor: pointer;
}
