/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('../../assets/images/bg-landing.jpg');
    background-size: cover; /* Zorgt dat de afbeelding de volledige viewport bedekt */
    background-attachment: fixed; /* Houdt de achtergrond vast bij scrollen */
    background-position: center; /* Centreert de afbeelding */
    background-repeat: no-repeat; /* Voorkomt herhaling */
}

.container {
    display: flex; 
    height: 100vh;
}

.sidebar {
    background-color: #222222f2;
    color: #fff;
    padding: 20px;
    padding-top:100px;
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
}

.sidebar-footer {
    margin-top: auto; /* Zorgt ervoor dat de footer onderaan blijft */
    text-align: center;
    font-size: 14px;
    color: #fff; /* Pas de kleur aan naar wens */
    background-color: #33333300; /* Pas de achtergrondkleur aan */
    padding: 10px 0;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    text-shadow: 0px 2px 4px #000000;
}

.login-form label {
    display: block;
    margin: 10px 0 5px;
}

.login-form input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #bc1a1a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    color: #ffffff;
}

.signup-prompt {
    font-size: 0.9em;
    margin-top: 10px;
}

.register-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #bc1a1a;
    text-decoration: none;
}

.register-btn:hover {
    text-decoration: underline;
}

.content {
    flex: 1;
    background-color: #33333381;
    display: flex;
    color:white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

.content p {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: white;
}

.cta-button {
    padding: 15px 30px;
    color: #bc1a1a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #16a085;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        background-color: #222222f2;
    }

    .content {
        padding: 10px;
    }
}
