#ANError, #FNError, #LNError, #PNError, #ConsentError{
    color: red;
}

.consent-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.consent-section p {
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.checkbox-option {
    margin: 15px 0;
    width: 100%;
}

.checkbox-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1 1 0%;
    line-height: 1.4;
    cursor: pointer;
    color: #333;
    margin: 0;
    vertical-align: top;
    word-break: break-word;
    white-space: normal;
}

.checkbox-option input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    min-width: 18px;
    height: 18px;
    order: 0;
}

.terms-section {
    margin-top: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    border-left: 4px solid #2dde4c;
}

.terms-section p {
    margin: 0;
    color: #666;
}

.terms-section a {
    color: #2dde4c;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}