.cb-build-card-form {
    width: 100%;
    margin-top: 128px;
    padding: 128px 24px;
    /* background: var(--Gradient-Darkside, linear-gradient(143deg, #222 0.72%, #000 100%)); */
    box-sizing: border-box;
}

.cb-build-card-form__inner {
    max-width: 868px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 53px;
}

.cb-build-card-form__head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cb-build-card-form__title {
    margin: 0;
    text-align: center;
}

.cb-build-card-form__title-default,
.cb-build-card-form__title-accent {
    color: var(--Shades-Dark-Side-White, #FFF);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.cb-build-card-form__title-accent {
    color: var(--Accent-Green, #22E243);
}

.cb-build-card-form__desc {
    max-width: 864px;
    margin: 48px 0 0;
    color: var(--Shades-Dark-Side-White, #FFF);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.cb-build-card-form__form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 416px));
    justify-content: center;
    gap: 32px;
}

.cb-build-card-form__field {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 80px;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: var(--Shades-Dark-Side-Antracite, #222);
    box-sizing: border-box;
    overflow: visible;
}

.cb-build-card-form__field--full {
    grid-column: 1 / -1;
}

.cb-build-card-form__label {
    color: var(--Shades-Dark-Side-Soft-Grey, #888);
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 12px;
}

.cb-build-card-form__input {
    display: block;
    width: 100%;
    height: auto;
    padding: 2px 0 4px;
    border: 0;
    background: transparent;
    color: var(--Shades-Dark-Side-White, #FFF);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    overflow: visible;
}

.cb-build-card-form__input::placeholder {
    color: var(--Shades-Dark-Side-Soft-Grey, #888);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.cb-build-card-form__input:focus {
    outline: none;
}

.cb-build-card-form__field:focus-within {
    border-color: #22E243;
}

.cb-build-card-form__input--textarea {
    min-height: 283px;
    height: 283px;
    display: block;
    padding-top: 0;
    resize: none;
    overflow: visible;
}

.cb-build-card-form__input--textarea::placeholder {
    max-width: 373px;
    white-space: pre-line;
}

.cb-build-card-form__button {
    display: flex;
    width: 303px;
    height: 56px;
    padding: 20px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 64px;
    background: #22E243;
    border: 2px solid #000;
    color: #000;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    text-decoration: none;
    text-box: normal;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    grid-column: 1 / -1;
    justify-self: center;
    cursor: pointer;
}

.cb-build-card-form__button:hover {
    border: 2px solid #000;
    background: #f7f7f7;
    color: #222;
    text-align: center;
    font-family: Nunito;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, .15);
    background-image: url(https://www.zen.com/wp-content/themes/zen/images/deals-landing/patern.webp);
    background-position: center;
    background-size: cover;
}

@media (max-width: 1000px) {
    .cb-build-card-form {
        padding: 128px 20px;
        background: transparent;
    }

    .cb-build-card-form__inner {
        gap: 32px;
    }

    .cb-build-card-form__title-default,
    .cb-build-card-form__title-accent {
        font-size: 28px;
        line-height: 40px;
    }

    .cb-build-card-form__desc {
        margin-top: 32px;
        font-size: 18px;
        line-height: 24px;
        max-width: 304px;
    }

    .cb-build-card-form__form {
        grid-template-columns: 1fr;
        gap: 32px;
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .cb-build-card-form__field--full {
        grid-column: auto;
    }

    .cb-build-card-form__field {
        min-height: 64px;
        padding: 14px 20px;
    }

    .cb-build-card-form__label {
        margin-bottom: 10px;
    }

    .cb-build-card-form__input {
        height: auto;
        padding: 1px 0 3px;
        font-size: 20px;
        line-height: 28px;
    }

    .cb-build-card-form__input::placeholder {
        font-size: 20px;
        line-height: 28px;
    }

    .cb-build-card-form__input--textarea {
        min-height: 278px;
        height: 278px;
    }

    .cb-build-card-form__button {
        width: 256px;
    }
}

@media (max-width: 400px) {
    .cb-build-card-form__form {
        width: 304px;
        padding: 0;
    }
}

.cb-build-card-form .pform__status {
    grid-column: 1 / -1;
    font-family: Nunito;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
}

.cb-build-card-form .pform__status--error {
    color: #ff6b6b;
}
