.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}
.auth-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}
.auth-header .container-title {
    font-size: 28px;
    margin-bottom: 10px;
}
.auth-header .auth-subtitle {
    font-size: 16px;
    color: #666;
}
.auth-form .form-group {
    margin-bottom: 20px;
}
.auth-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.auth-form .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.auth-form .form-input:focus {
    border-color: #007bff;
    outline: none;
}
.auth-footer {
    text-align: center;
    margin-top: 20px;
}
.auth-footer-text {
    margin-right: 5px;
    color: #666;
}
.auth-link {
    color: #007bff;
    text-decoration: none;
}
.auth-link:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: #007bff;
    border: 0px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    outline: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-primary:active {
    background-color: #004085;
}

/* <!DOCTYPE html>
<html lang="ru">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<title>Авторизация</title>
		<link rel="stylesheet" href="/css/main.css?v=12022026-1">
		<link rel="stylesheet" href="/css/auth.css?v=12022026-1">
        <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
        <script src="/js/auth.js?v=12022026-1" defer></script>
	</head>
	<body class="auth-page">
		<div class="container auth-container">
			<header class="container-header auth-header">
				<h1 class="container-title">Авторизация</h1>
				<p class="auth-subtitle">Войдите, чтобы управлять шаблонами и генерацией.</p>
			</header>

			<main class="container-body">
				<form class="auth-form">
					@csrf
					<div class="form-group">
						<label for="login" class="form-label">Логин</label>
						<input id="login" name="login" type="text" class="form-input" autocomplete="username" required>
					</div>
					<div class="form-group">
						<label for="password" class="form-label">Пароль</label>
						<input id="password" name="password" type="password" class="form-input" autocomplete="current-password" required>
					</div>
					<button type="submit" class="btn btn-primary" id="login-btn">Войти</button>
				</form>

				<div class="auth-footer">
					<span class="auth-footer-text">Нет аккаунта?</span>
					<a class="auth-link" href="/register">Запросить доступ</a>
				</div>
			</main>
		</div>
	</body>
</html>
 */
