﻿/* =========================================================
   AUTHENTICATIE STYLING - VERSIE 2.0 (GECORRIGEERD)
   Bestand : authenticatie.css
   Locatie : wwwroot\css
   ========================================================= */

/* Zorg dat de browser zelf al de juiste kleur heeft */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f2f6f5 !important; /* Dwing de kleur af op het hoogste niveau */
}

.cf-main-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 100% van de Viewport Height */
    background-color: #f2f6f5 !important;
}

.cf-main-shell__content {
    flex: 1 0 auto; /* Neemt alle ruimte in en duwt de footer naar de bodem */
    display: flex;
    align-items: center;
    justify-content: center;
}




.cf-login {
    background-color: #f2f6f5 !important;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-login__card {
    background: #ffffff;
    border-radius: 12px;
    /* Een iets zwaardere schaduw voor meer diepte */
    box-shadow: 0 15px 35px rgba(33, 67, 62, 0.08);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    box-sizing: border-box;
}

.cf-login__header {
    text-align: center;
    margin-bottom: 2rem;
}


.cf-login__logo {
    max-width: 100%;
    height: auto;
    filter: brightness(0.45) contrast(1.05);
}




.cf-login__title {
    color: #21433e;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cf-login__subtitle {
    color: #6a7c79;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
}

.cf-label {
    color: #21433e;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cf-input {
    border: 1px solid #d1dbd9;
    border-radius: 6px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.95rem;
}

    .cf-input:focus {
        border-color: #21433e;
        outline: none;
        box-shadow: 0 0 0 3px rgba(33, 67, 62, 0.1);
    }

.cf-login__actions {
    margin-top: 2rem;
}

/* De knop-stijl */
.cf-btn-primary {
    background-color: #21433e !important;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 14px;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .cf-btn-primary:hover {
        background-color: #2c5a54 !important;
    }

.cf-login__links {
    margin-top: 1.5rem;
    border-top: 1px solid #eef2f1;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}



    .cf-login__links a {
        color: #3498db;
        font-size: 0.8rem;
        text-decoration: none;
    }

        .cf-login__links a:hover {
            text-decoration: underline;
        }


.cf-login__help {
    margin-top: 0.5rem;
    text-align: center;
}


    .cf-login__help .cf-link-inline {
        font-size: 0.75rem;
        font-weight: 400;
        color: #8a9b98 !important;
        text-decoration: none !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer;
        transition: color 0.15s ease-in-out;
    }   
    
    .cf-login__help .cf-link-inline:hover {
            color: var(--cf-dark); /* pas bij hover wordt hij “actief” */
            text-decoration: underline;
        }