.login-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

label {
    color: #ff0;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    margin-bottom: 0;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input[type="password"] {
    padding-right: 2.5rem; /* ruimte voor het oogje */
}

.toggle-password {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 1.25rem;
    color: #333;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:focus {
    outline: none;
}

.recaptcha-group {
    margin: 2rem auto;
    width: fit-content;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    width: 100% !important;
    min-width: 100% !important;
    display: block;
    margin: 0 auto;
}

.submit-group {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.submit-button {
    background: #ff0;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.submit-button:hover {
    background: #ffe600;
}

.forgot-password-group {
    text-align: center;
    margin-bottom: 1rem;
}

.login-forgot-password a {
    color: #ff0;
    text-decoration: underline;
    font-size: 1.05rem;
}

.login-form .fout {
  color: #ff4444;
  font-weight: 600;
  margin-top: 12px;
  font-size: 1.05rem;
  text-align: center;
}