.c-input--error {
    border: 1px solid #ff383c !important;
    color: #ff383c;
}

.c-checkbox--error .c-checkbox {
    border-color: #ff383c;
}

.c-input--error::placeholder,
.c-input--error::-ms-input-placeholder {
    color: #ff383c !important;
}

.hystmodal__window {
    width: auto;
    background: unset;
}

.hystmodal--active .c-modal {
    border-radius: 64px;
    padding: 48px;
    max-width: 1000px;
    background: #fff;
}

.c-modal__close {
    background: #ffffff;
}

.c-modal__close:focus-visible{
    outline: none;
}

.hystmodal--active .c-modal__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.hystmodal--active .c-modal__title{
    font-family: "TikTok Sans", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 95%;
    letter-spacing: -0.03em;
    color: #1d1d20;
    margin-bottom: 16px;
}

.c-modal__form-description{
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
    color: #1d1d20;
}

.hystmodal--active  .c-modal__form{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.hystmodal--active  .c-modal__form input {
    width: calc(50% - .75rem);
}

.hystmodal--active  .c-modal__form .c-modal__button{
    width: 100%;
}

.c-modal__form .c-modal__button button{
    border: 4px solid #1d1d20;
    border-radius: 16px;
    width: 100%;
    height: 92px;
    backdrop-filter: blur(10.699999809265137px);
    background: #fff;
    font-family: "TikTok Sans", sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 100%;
    text-transform: uppercase;
    color: #1d1d20;
}

.c-modal__form .c-modal__button button:hover{
    background: #98e51c;
}

.c-modal__form .c-check-confirm {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
    gap: 10px;
}

.c-modal__form .c-check-confirm-text span {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0%;
}

.c-modal__form .c-check-confirm-text a {
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0%;
    color: #0c2549;
}

.c-modal__form .c-check-confirm-text a:hover{
    color: #98e51c;
}

.c-checkbox-wrap input {
    display: none;
}

.c-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #1d1d20;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.c-checkbox-icon {
    width: 12px;
    height: 8.5px;
    opacity: 0;
    transition: .2s;
}

.c-checkbox-wrap input:checked + .c-checkbox .c-checkbox-icon {
    opacity: 1;
}

@media (max-width: 520px) {
    .hystmodal--active .c-modal{
        margin: 5px;
        padding: 28px;
    }

    .hystmodal--active .c-modal__title{
        font-size: 2rem;
        line-height: 1.92rem;
    }

    .c-modal__form-description{
        font-size: 0.875rem;
        line-height: 1.12875rem;
    }

    .hystmodal--active .c-modal__form input{
        width: 100%;
    }
}