/* 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);
}


/* 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%; /* Veranderd naar 100% zodat het inputveld en de knop gelijk zijn */
    margin: 0 auto;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}

.input-group input {
    width: 78%;
    padding: 12px 40px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.input-group input:focus {
    border-color: #8bc34a;
}

/* Knop */
.btn {
    background-color: #8bc34a;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%; /* Zorg ervoor dat de knop dezelfde breedte heeft als het invoerveld */
    transition: background 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background-color: #7cb342;
}

/* Wachtwoord vergeten */
.forgot-password {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #888;
    margin: 20px 0 0;
    text-decoration: none;
}

.forgot-password:hover {
    color: #8bc34a;
}
