@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

h1 {
    display: flex;
    justify-content: center;
    margin: 50px 0px 0px 0px;
    text-align: center;
}

/* Body styling */

.container {
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.form-container {
    padding: 20px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="password"]:focus {
    background-color: #fff;
    border: 1px solid #42b0d5;
    outline: none;
    transition: 0.3s ease;
}

input[type="submit"] {
    background-color: #29334C;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 18px;
}

input[type="submit"]:hover {
    background-color: #33cd11;
}

.functieKnoppen a {
    background-color: #29334C;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 18px;
}

.functieKnoppen a:hover {
    background-color: red;
}

/* Footer */

.credit {
    text-align: center;
    margin-top: 50px;
    color: #666;
}

.mailto {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.mailto:hover {
    transition: 0.3s;
    color: #333;
}
