body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Poppins, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    display: flex;
    width: 1000px;
    background-color: white;
    padding: 40px;
    justify-content: space-between;
}

.login-links, .login-rechts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: center;
}

.login-logo {
    width: 350px;
    margin: 0 auto;
}

.naamwebsite {
    margin-top: 10px;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 0;
    color: #7D825C;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

.login-box {
    background-color: rgb(245, 243, 243);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(187, 187, 187, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.login-rechts label {
    text-align: left;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: Poppins, sans-serif;
}

.login-input {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    background-color: #f3f0f0;
    outline: none;
}

.login-btn {
    background-color: #7D825C;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
    color: white;
}

.login-btn:hover {
    background-color: #7D825C;
    transform: scale(1.02);
}

.wachtwoord-vergeten {
    font-size: 14px;
    color: #636749;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
}

.nieuw-account-btn {
    background-color: #CA7734;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 60%;
    margin: 0 auto;
}

.nieuw-account-btn:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    position: fixed; bottom: 0;
    margin-bottom: 20px; 
    width: 100%;
}









