body {
    background-color: #333;
    background-image: url('background.png');
    background-size: cover;      /* scale image to cover entire page */
    background-position: center; /* center the image */
    background-repeat: no-repeat; /* prevent tiling */
    background-attachment: fixed; /* optional: keeps image fixed on scroll */
    color: #fff;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 0px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    background-color: #13131300;
    border-radius: 15px;
    padding: 10vh;


    form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;

        input {
            transition: background-color 0.3s ease, transform 0.3s ease;
            background-color: #181818;
            color: #fff;
            border: none;
            width: 50vh;
            border-radius: 5px;
            text-align: center;
            padding: 0.5rem 1rem;
        }

        button {
            transition: background-color 0.3s ease, transform 0.3s ease;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            font: bold;
            width: 40vh;
            height: 30px;
            background-color: #444444;
            border-radius: 5px;
            border: 0px;
            color: #fff;
        }

        button:hover {
            transform: scale(1.02);
            background-color: #555;
        }
    }
}

header {
    display: flex;
    margin-left: 1rem;
    justify-content: space-between; /* left h1, right login-signup */
    align-items: center;
    padding: 0.5rem 0rem;

    h1 {
        margin-right: 1rem;
    }

    .login-signup {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 1rem;
        gap: 0.75rem; /* spacing between buttons */
    }

    button {
        background-color: #444;
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    button:hover {
        background-color: #555;
        transform: scale(1.05);
    }

    button:active {
        transform: scale(0.95);
    }
}
