/* Login.css */

/* De achtergrond gebruikt nu het officiële Dokwurk Blauw met een subtiel verloop */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d426e 100%);
    height: 100vh;
    width: 100vw;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header .logo {
    display: block;
    margin: 0 auto 15px auto; /* Centers the image */
    max-width: 200px;         /* Prevents the logo from being too large */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05)); /* Subtle depth */
}

.login-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue); /* Labels in het blauw voor betere branding */
}

.form-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus staat nu op Dokwurk Groen */
.form-group input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(60, 181, 161, 0.15);
    outline: none;
}

.btn-full {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 10px;
    background-color: var(--primary-blue);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-full:hover {
    background-color: #38528a; /* Iets donkerder dan het basis blauw */
}

/* De foutmelding gebruikt de 'Extra Personeel' kleur uit het Dokwurk palet */
.error-msg {
    background-color: #fff5f7;
    color: var(--status-help); 
    padding: 12px;
    border-radius: 6px;
    border-left: 4px solid var(--status-help);
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}