@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', Arial, sans-serif;
    background: #ffffff;
    color: #1d1a1a;
}

.pf-wrap {
    max-width: 1132px;
    margin: 0 auto;
    padding: 24px 24px 64px;
}

.pf-breadcrumbs {
    font-size: 12px;
    color: #b6b5b5;
    margin-bottom: 24px;
}

.pf-breadcrumbs span {
    margin: 0 6px;
}

.pf-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.15;
    color: #383838;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
}

.pf-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.pf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.pf-field.pf-field--options {
    gap: 10px;
}

.pf-label {
    font-weight: 500;
    font-size: 15px;
    color: #1d1a1a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pf-label-row {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-weight: 500;
    font-size: 15px;
    color: #1d1a1a;
}

.pf-req {
    color: #e02b2b;
    flex: 0 0 auto;
}

.pf-hint {
    font-weight: 400;
    font-size: 13px!important;
    line-height: 1.4!important;
    color: #6d6d6d;
    margin: 0;
}

.pf-input {
    width: 100%;
    height: 48px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    background: #ffffff;
    padding: 0 16px;
    font-family: inherit;
    font-size: 14px;
    color: #1d1a1a;
    outline: none;
    transition: border-color .15s ease;
}

.pf-input::placeholder {
    color: #b0b0b0;
}

.pf-input:focus {
    border-color: #215ca8;
}

.pf-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.pf-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #1d1a1a;
    transition: border-color .15s ease, background-color .15s ease;
}

.pf-option:hover {
    border-color: #215ca8;
}

.pf-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pf-mark {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 1.5px solid #dbdbdb;
    background: #ffffff;
    position: relative;
    transition: border-color .15s ease, background-color .15s ease;
}

.pf-mark--round {
    border-radius: 50%;
}

.pf-mark--square {
    border-radius: 4px;
}

.pf-option input:checked + .pf-mark {
    border-color: #215ca8;
}

.pf-option input:checked + .pf-mark--round::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #215ca8;
}

.pf-option input:checked + .pf-mark--square {
    background: #215ca8;
}

.pf-option input:checked + .pf-mark--square::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pf-option-text {
    flex: 1;
}

.pf-divider {
    background: #eeeeee;
    border-radius: 8px;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 14px;
    color: #1d1a1a;
}

.pf-consent {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
}

.pf-consent input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pf-consent .pf-mark {
    margin-top: 1px;
}

.pf-consent-text {
    font-size: 13px;
    line-height: 1.5;
    color: #6d6d6d;
}

.pf-submit {
    align-self: flex-start;
    background: #215ca8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 60px;
    padding: 0 32px;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.18px;
    cursor: pointer;
    transition: background-color .15s ease;
    text-transform: none!important;
}

.pf-submit:hover {
    background: #1a4b8a;
}
.pf-consent input:checked + .pf-mark--square {
    background: #215ca8;
}

.pf-consent input:checked + .pf-mark {
    border-color: #215ca8;
}
.pf-consent input:checked + .pf-mark::after{
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Tablet / intermediate breakpoint */
@media (max-width: 1024px) {
    .pf-wrap {
        padding: 20px 20px 56px;
    }
    .pf-card {
        max-width: 100%;
        padding: 32px 28px;
    }
    .pf-title {
        font-size: 30px;
        max-width: 640px;
    }
}

/* Mobile breakpoint */
@media (max-width: 600px) {
    .pf-wrap {
        padding: 16px 12px 40px;
    }
    .pf-breadcrumbs {
        margin-bottom: 16px;
    }
    .pf-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 24px;
    }
    .pf-card {
        padding: 20px 16px;
        border-radius: 12px;
        gap: 20px;
    }
    .pf-label,
    .pf-label-row {
        font-size: 14px;
    }
    .pf-input {
        height: 44px;
        font-size: 13px;
    }
    .pf-option {
        padding: 12px 14px;
        font-size: 13px;
    }
    .pf-divider {
        font-size: 13px;
        padding: 12px 14px;
    }
    .pf-submit {
        width: 100%;
        height: 52px;
        font-size: 16px;
    }
}


form .error__span {
    display: block;
    position: relative;
    height: 0;
    font-size: 12px;
    color: #f33b3e;
    /* top: -25px;
     left: 20px;*/
}
.label-checkbox1__icon.error {
    border-color: #f33b3e;
    outline: 1px solid #f33b3e;
}

.input2.input-error {
    border-color: #f33b3e !important;
    background-color: #fff8f8;
}
.field-error-message {
    color: #f33b3e;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.3;
}


.label-checkbox1-wrap.checkbox-error {
    position: relative;
}

.label-checkbox1-wrap.checkbox-error .label-checkbox1__icon {
    border-color: #f33b3e;
}

.checkbox-error-message {
    margin-top: 5px;
    padding-left: 25px;
}