:root {
	--primary-color: #4a90e2;
	--bg-color: #f4f7f6;
	--text-color: #333;
	--light-text-color: #666;
	--near-white: #FAFAFA;
	--border-radius: 8px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: var(--bg-color);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.login-container {
	background: var(--near-white);
	padding: 1rem 2.5rem 2.5rem 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
}

h2 {
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

p {
	color: var(--light-text-color);
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.input-group {
	margin-bottom: 1.2rem;
}

.input-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
}

.input-group .info {
	margin: 0.5rem 0;
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--light-text-color);
}

.input-group input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.3s;
}

.input-group input:focus {
	border-color: var(--primary-color);
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 0.8rem;
}

.form-options a {
	color: var(--primary-color);
	text-decoration: none;
}

.login-btn {
	width: 100%;
	padding: 0.75rem;
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.login-btn:hover {
	background-color: #357abd;
}

.signup-link {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.signup-link a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem auto;
	gap: 1rem;
	font-size: 2rem;
	font-weight: 600;
}

.logo {
	width: 6rem;
}

h1 {
	font-size: 1.5rem;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.message {
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.error {
	color: red;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

/* Alerts */
.alert {
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: 1.5rem;
}

.alert-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.alert-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
	body {
		align-items: normal;
	}

	.login-container {
		padding-top: 3rem;
		max-width: 100%;
		border-radius: 0;
	}
}

