/* Algemene stijlen */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container */
.container {
    background: #f8f8fb;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Logo */
.logo {
    width: 180px; /* Grotere breedte */
    margin: 30px auto;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Titels en tekst */
h1 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.subtext {
    font-size: 14px;
    color: #7cb342;
    margin-bottom: 20px;
}

/* Formulier */
form {
    text-align: left;
    margin-top: 20px;
}

label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

/* Inputvelden */
.input-group {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}

.input-group input {
    width: 80%;
    padding: 12px 40px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.input-group input:focus {
    border-color: #8bc34a;
}

/* Voeg marge toe aan het laatste invoerveld voor ruimte tussen knop */
.input-group:last-of-type {
    margin-bottom: 20px; /* Dit creëert ruimte tussen het laatste veld en de knop */
}

/* Knop */

    .btn {
        background-color: #8bc34a;
        color: white;
        border: none;
        padding: 12px 25px;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s ease;
        margin-top: 20px;
    }
.btn:hover {
    background-color: #7cb342;
}

/* Registratie tekst */
.register {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.register a {
    color: #8bc34a;
    text-decoration: none;
    font-weight: bold;
}

.register a:hover {
    text-decoration: underline;
}


