        /* Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            color: #333;
            background: #000;
            overflow: hidden;
        }

        .container {
            display: flex;
            flex-direction: row;
            height: 100vh;
        }

        .slider {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            animation: slide 12s infinite;
        }

        .slider img:nth-child(2) {
            animation-delay: 4s;
        }

        .slider img:nth-child(3) {
            animation-delay: 8s;
        }

        @keyframes slide {
            0% { opacity: 1; }
            33% { opacity: 0; }
            100% { opacity: 0; }
        }

        .caption {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            font-family: 'Rufina', serif;
            font-size: 2rem;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .login-section {
            flex: 1;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-form {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 100%;
            max-width: 400px;
        }

        .login-form img {
            width: 100px;
            margin-bottom: 20px;
        }

        .login-form h2 {
            font-family: 'Rufina', serif;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #4e4ffa;
        }

        .login-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .login-form button {
            width: 100%;
            padding: 10px;
            background: #4e4ffa;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(78, 79, 250, 0.4);
        }

        .login-form button:hover {
            background: #3a3ac8;
        }

        .login-form a {
            display: block;
            margin-top: 10px;
            font-size: 0.9rem;
            color: #4e4ffa;
            text-decoration: none;
        }

        .login-form a:hover {
            text-decoration: underline;
        }
        .error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .slider {
        display: none;
    }
}

