/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f5f8; /* Lichtblauwe achtergrondkleur */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff; /* Witte achtergrond voor het hoofdgedeelte */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
    max-width: 90%;
}

h1 {
    text-align: center;
    color: #2c3e50; /* Donkerblauwe tekstkleur */
}

label {
    margin-bottom: 5px;
    color: #2980b9; /* Donkerblauwe tekstkleur voor labels */
}

form {
    display: flex;
    flex-direction: column; /* Plaats de elementen onder elkaar */
}

input, textarea, button {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #3498db; /* Blauwe rand voor invoervelden en knop */
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, button:focus {
    outline: none;
    border-color: #2980b9; /* Donkerblauwe rand bij focus */
}

button {
    background-color: #3498db; /* Blauwe achtergrondkleur voor de knop */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9; /* Donkerblauwe achtergrondkleur bij hover */
}

textarea {
    resize: vertical; /* Sta toe dat de textarea verticaal wordt vergroot/verkleind */
    height: 100px; /* Voeg een standaard hoogte toe aan de textarea */
}

input[type="file"] {
    border: none;
    background-color: #f2f5f8; /* Lichtgrijze achtergrond voor het bestandsinvoerveld */
    color: #2980b9; /* Donkerblauwe tekstkleur */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="file"]:hover {
    background-color: #e1e8ed; /* Donkerder grijs bij hover */
}
