/* Achtergrond */
body {
     background: linear-gradient(135deg,lightgreen, darkgreen);

}

body {
     background: linear-gradient(135deg,lightgreen, darkgreen);
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.login-card {
    background: #f4f7ec;
    padding: 40px;
    width: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
}

/* Logo */
.logo {
    width: 120px;
    margin-bottom: 1px;
}

h1 {
    margin-bottom: 30px;
    color: #1f5f2e;
}

/* Labels */
label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1f5f2e;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #bcd4a5;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Password field */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

/* Login button */
.login-button {
    width: 100%;
    padding: 14px;
    background-color: #f4c400;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-button:hover {
    background-color: #e0b200;
}

/* Forgot link */
.forgot-link {

    margin-top: 15px;
    color: #1f5f2e;
    cursor: pointer;
    text-decoration: underline;
}

.forgot-box {
    margin-top: 20px;
    padding: 15px;
    background: #e6f2d9;
    border-radius: 10px;
    display: none;
}


/* Error */
.error-box {
    background: #ffdddd;
    color: #a10000;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}
