<!-- Тот же PHP код в начале остается без изменений -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Вход в систему</title>
</head>
<body class="auth-wrapper login-body"> <!-- Добавили класс login-body -->
<div class="auth-card login-card-custom"> <!-- Добавили класс login-card-custom -->
<h2>С возвращением!</h2>
<?php if($msg) echo "<p style='color:#ff4757; font-weight:bold; margin-bottom:15px;'>$msg</p>"; ?>
<form class="auth-form" method="POST">
<input type="email" name="email" class="login-input" placeholder="Ваш Email" required>
<input type="password" name="password" class="login-input" placeholder="Пароль" required>
<button type="submit" class="btn-primary btn-login-exclusive">Войти в аккаунт</button>
</form>
<a href="register.php" style="color: #6033ec; font-weight: bold;">Создать новый профиль</a>
</div>
</body>
</html>