* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: black;
    font-family: Arial, sans-serif;
}

.login-container {
    background-image: url('/img/inlogschermachtergrond.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 380px;
}

.login-form h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

.login-form h3 {
    text-align: center;
    font-size: 18px;
    margin: 20px 0 15px 0;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    margin: 15px 0 10px 0;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.login-form button:hover {
    background-color: #0056b3;
}

.toggle-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.toggle-link a {
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
}

.toggle-link a:hover {
    text-decoration: underline;
}

.form-group {
    display: none;
}

.form-group.active {
    display: block;
}

.message {
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 14px;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* DASHBOARD (circles) */
.dashboard {
    background: white;
    color: black;
    position: relative;
    min-height: 100vh;
}

.logout-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.logout-btn:hover {
    background-color: #c82333;
}
