﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('/custom/img/login_background.jpg');
    background-size: cover;
    color: white;
    text-align: center;
}

header {
    background: #415873;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
}

    header img {
        height: 50px;
    }

.hero {
    padding: 20px 20px;
    color: #415873;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        font-weight: 600;
    }

    .hero p {
        font-size: 20px;
        max-width: 600px;
        margin-top: 10px;
    }

    .hero img {
        width: 90%;
        max-width: 700px;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 20px;
}

.feature {
    background: #415873;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .feature:hover {
        transform: translateY(-5px);
    }

.cta {
    margin: 40px;
}

    .cta button {
        background: #FFC000;
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s ease, transform 0.2s;
    }

        .cta button:hover {
            background: #0044cc;
            transform: scale(1.05);
        }

footer {
    background: #415873;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
}

.login-container {
    background: #1a1a2e;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 350px;
}

    .login-container h2 {
        margin-bottom: 20px;
        color: white;
    }

    .login-container input {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        background: #2e2e4d;
        color: white;
    }

        .login-container input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .login-container input[type=submit] {
            background: #FFC000;
            color: white;
            border: none;
            padding: 12px;
            font-size: 18px;
            width: 100%;
            cursor: pointer;
            border-radius: 5px;
            transition: background 0.3s ease, transform 0.2s;
            margin: 0;
        }

            .login-container input[type=submit]:hover {
                background: #0044cc;
                transform: scale(1.05);
            }

    .login-container a {
        display: block;
        margin-top: 15px;
        color: white;
        text-decoration: none;
        font-size: 14px;
    }

        .login-container a:hover {
            text-decoration: underline;
        }

.label-error {
    display: block;
    color: red;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 8px;
}
