/*.pf-description
{
    font-size: 1px;
    text-align: left;
}*/

.pf-header {
    font-size: clamp(1.25rem, 4.5vw, 1.75rem);
    font-weight: 600;
    margin-top : 0;
    margin-bottom: 0.75rem;
    padding-top: 1.25rem;
    color: #2c2c36;
    text-align: left;
}

.pf-description {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #2c2c36;
    text-align: left;
}

.pf-input-label {
    text-align: left;
    font-weight: 600;
    color: black;
    width: 100%;
}

.pf-input-label span {
    text-align: left;
    font-weight: 400;
    color: #666;
    width: 100%;
}

.pf-checkbox-label {
    text-align: left;
    font-weight: 400;
    color: #333;
    width: 100%;
}

.pf-table-block {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 10px;
    margin: 20px 0;
}

/* Rows */
.pf-table-row {
    display: flex;
    justify-content: space-evenly;
    padding: 6px 0;
    font-size: 14px;
}

/* Left label column */
.pf-table-label {
    text-align: left;
    font-weight: 600;
    color: black;
    width: 60%;
}

/* Right value column */
.pf-table-value {
    color: #666;
    text-align: left;
    white-space: nowrap;
    width: 40%;
}

.pf-formgroup {
    margin-bottom: 20px;
}

.pf-formgroup label {
    font-weight: 600;
}

.pf-under-note {
    font-style: italic;
    font-size: 0.7em;
    color: #666;
    text-align: right;
    display: block;
}

.pf-sso-checkboxgroup {
    margin-top: 20px;
}
.pf-sso-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    margin-top: 30px;
}
.pf-sso-checkbox label {
    text-align: left;
    font-size: 14px;
    line-height: 1.3;
}

.pf-sso-checkbox a {
    color: #C1124C;
    text-decoration: underline;
}


/* --- Pure CSS Checkbox --- */
.pf-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #444;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Focus ring for keyboard users */
.pf-checkbox:focus {
    outline: 2px solid #0073e6;
    outline-offset: 3px;
}

/* --- Checkmark (hidden by default) --- */
.pf-checkbox::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 12px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: scale(0.5) rotate(45deg);
    opacity: 0;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

/* --- Checked State --- */
.pf-checkbox.checked {
    background: #0073e6;
    border-color: #0073e6;
}

/* Show / animate checkmark */
.pf-checkbox.checked::after {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}