﻿/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    background-color: #3e3e3e;
    padding: 20px 20px;
    color: white;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

    .buttons:hover {
        text-decoration: underline;
    }

.cart {
    font-size: 2em;
    text-decoration: none;
}

.logo {
    width: auto;
    height: 90px;
}

/* Login form container */
.login-container {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    text-align: center;
}

    .login-container h2 {
        margin-bottom: 20px;
        color: #333;
    }

    /* Form fields */
    .login-container label {
        display: block;
        margin: 10px 0 5px;
        color: #333;
    }

    .login-container input[type="email"],
    .login-container input[type="password"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 2px solid #000000;
        border-radius: 5px;
    }

/* Register link */
.register-link {
    margin-bottom: 15px;
    font-size: 0.9em;
}

    .register-link a {
        color: #0056b3;
        text-decoration: none;
    }

        .register-link a:hover {
            text-decoration: underline;
        }

/* Button styles */
.button-group {
    display: flex;
    justify-content: space-between;
}

.login-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #d68b87;
    color: white;
    cursor: pointer;
    /* Basisstijl voor de footer */
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.footer {
    background-color: #555; /* Donkergrijze achtergrondkleur */
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 18px;
    margin-bottom: 0%;
}

/* Stijl voor de links in de footer */
.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: normal;
}

    /* Afstand tussen de links */
    .footer-content a:hover {
        text-decoration: underline;
    }
