 body {
            background: #121212;
            color: white;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .login-container {
            background: #1e1e1e;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(231, 76, 60, 0.7);
            text-align: center;
            width: 100%;
            max-width: 400px;
        }

        h2 {
            color: #e74c3c;
            margin-bottom: 15px;
        }

        input, button {
	width: 90%;
	padding: 12px;
	margin: 25px 0;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	display: block;
}
        input {
            background: #444;
            color: white;
        }

        button {
            background: #e74c3c;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover {
            background: #c0392b;
        }

        .error {
            color: #ff4444;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .login-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .login-logo:hover {
            transform: scale(1.2);
            transition: 0.3s;
        }
