body {
    font-family: 'Raleway', sans-serif;
    background-color: #eef1f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-position: center;
}

h1 {
    color: #0056b3;
}

.signup-container {
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    width: 350px; /* Aangepast voor een slankere uitstraling */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.signup-container{
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.signup-form {
    /* Extra styling naar wens */
}

.input-group {
    margin-bottom: 1em;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ddd;
    border-radius: 20px; /* Ronde hoeken voor moderniteit */
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.input-group.checkbox label {
    display: flex;
    align-items: center;
}

.input-group.checkbox input {
    margin-right: 5px;
}

.logo-upload {
    margin-bottom: 1em;
    cursor: pointer;
}

.logo-label {
    display: inline-block;
    cursor: pointer;
}

.logo-label img {
    max-width: 100px;
    margin-bottom: .5em;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #0056b3;
    color: white;
    margin-bottom: 1em;
    border-radius: 20px;
    cursor: pointer;
}

.login-failed {
    color: #ff0000;
    font-size: 0.9em;
}

button:hover {
    background-color: #003268;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}