/* authentication forms */

.pf--auth-container {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: block;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 40px;
    border: solid 1px #D2D4D3;
    border-radius: 3px;
}
.pf--auth-container-links {
    display: flex;
    margin-block-start: 1rem;
}
.pf--auth-container-links a {
    color: inherit;
}
.pf--auth-container p {
    margin-top: 0px;
    margin-bottom: 30px;
}

.pf--auth-container .form-field {
    width: 89%;
    border-radius: 3px;
    margin-bottom: 10px;
    border: solid 1px #D2D4D3;
    padding: 20px 5%;
    position: relative;
    display: block;
}

.pf--auth-container .form-submit {
    width: 100%;
    border: none;
    height: 55px;
    border-radius: 3px;
    cursor: pointer;
    background-color: var(--verder-lezen-knop-kleur);
    color : var(--verder-lezen-knop-tekst-kleur);
}


.flash {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    display: flex;
    gap: 1rem;
    line-height: 1.4;
}
.flash-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
}
.flash-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}
.flash-info {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}
.flash-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.flash-alert {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}
