#congratulation-form {
    --color-error: #FF0000;
}
.form-group-wide {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.form-group-wide + .error-message {
    display: none;
}
.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}
.checkboxWrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    place-items: center;
    flex-shrink: 0;
}
.checkboxWrapper__visibleField {
    position: relative;
    flex-shrink: 0;
    --field-size: 24px;
    background-color: #FFF;
    border-radius: 6.86px;
    width: var(--field-size);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-sizing: border-box;
    border: 2px solid transparent;
}
.checkbox-label:has(:user-invalid) .checkboxWrapper__visibleField {
    border-color: var(--color-error);
}
.checkbox-label:has(:user-invalid) .checkbox__checkboxText,
.checkbox-label:has(:user-invalid) .checkbox__checkboxText a {
    color: var(--color-error);
}
.checkbox-label:has(:checked) .checkboxWrapper__visibleField {
    background-color: #FB6D3A;
}
.checkbox-label:has(:checked) .checkboxWrapper__visibleField::before,
.checkbox-label:has(:checked) .checkboxWrapper__visibleField::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    background-color: #FFF;
    display: block;
}
.checkbox-label:has(:checked) .checkboxWrapper__visibleField::before {
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    margin-left: -5px;
    margin-top: 2px;
}
.checkbox-label:has(:checked) .checkboxWrapper__visibleField::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 14px;
    margin-left: 2px;
    margin-top: 0px;
}
.checkbox-label:not(:has(:checked)):hover .checkboxWrapper__visibleField {
    background-color: #EBEBEB;
}
.checkbox-label:has(:checked):hover .checkboxWrapper__visibleField {
    background-color: #E15926;
}
.checkboxWrapper__hiddenField {
    opacity: 0;
    position: absolute;
    top: -1000%;
}
.checkbox__checkboxText {
    text-align: left;
    line-height: 120%;
}
.checkbox__checkboxText a {
    color: #000;
}
.checkbox__checkboxText a:hover {
    text-decoration: none;
}
.greetings__field-group {
    position: relative;
}
.greetings__field-group .error-message {
    position: absolute;
    margin: 0;
    padding: 5px 10px;
    left: 50%;
    bottom: -4px;
    white-space: nowrap;
    transform: translateX(-50%);
    background-color: var(--color-error);
    border-radius: 10px;
    font-size: 13px;
    color: #FFF;
    z-index: 2;
}
.greetings__field-group .error-message::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background-color: var(--color-error);
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 0;
    left: 50%;
    z-index: -1;
}