/* Algemene PrintGroup-componenten.
   Alleen pg-ui-* klassen, zodat bestaande goedgekeurde pagina's niet wijzigen. */

.pg-ui-button {
    width: fit-content;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.pg-ui-button-primary {
    background: #c90083;
    color: #fff;
}

.pg-ui-button-primary:hover {
    background: #a9006e;
}

.pg-ui-button-secondary {
    border-color: #c90083;
    background: #fff;
    color: #c90083;
}

.pg-ui-button-secondary:hover {
    background: #f8edf4;
}

.pg-ui-button:focus-visible,
.pg-ui-form input:focus-visible,
.pg-ui-form select:focus-visible,
.pg-ui-form textarea:focus-visible {
    outline: 3px solid rgba(201, 0, 131, .2);
    outline-offset: 2px;
}

.pg-ui-button[disabled] {
    cursor: not-allowed;
    opacity: .55;
}

.pg-ui-form {
    display: grid;
    gap: 20px;
}

.pg-ui-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pg-ui-field {
    display: grid;
    gap: 8px;
}

.pg-ui-field label {
    color: #202229;
    font-size: 14px;
    font-weight: 700;
}

.pg-ui-field label span {
    color: #c90083;
}

.pg-ui-field input,
.pg-ui-field select,
.pg-ui-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #d9dbe0;
    border-radius: 7px;
    background: #fff;
    color: #202229;
    font: inherit;
    font-size: 15px;
}

.pg-ui-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.55;
}

.pg-ui-field small {
    color: #737781;
    font-size: 13px;
    line-height: 1.45;
}

.pg-ui-kicker {
    color: #c90083;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.pg-ui-page-title {
    margin: 0;
    color: #17181d;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -1.8px;
}

.pg-ui-lead {
    color: #4f535a;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .pg-ui-button {
        width: 100%;
    }

    .pg-ui-form-row {
        grid-template-columns: 1fr;
    }

    .pg-ui-page-title {
        font-size: 36px;
        letter-spacing: -1.2px;
    }

    .pg-ui-lead {
        font-size: 16px;
    }
}
