.form-container {
    /*background-color: #fff;*/
    border-radius: 8px;
    max-width: 350px;
    width: 100%;
    position: relative;
    z-index: 10;
}
.form-container__title {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 124%;
    text-align: center;
    color: #1F1F1F;
    margin-bottom: 34px;
}
.form-container label {
    display: block;
 /*   margin-bottom: 8px;
    font-weight: bold;*/
}
.form-container input[type="text"],
.form-container input[type="email"] {
    width: 95%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px dashed #f75176;
    border-radius: 4px;
    font-size: 16px;
    background: transparent;
}
.form-container input[type="checkbox"] {
    margin-right: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    /*margin-bottom: 10px;*/
    gap:5px;
}
.checkbox-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
.checkbox-link {
    color: #007bff;
    text-decoration: none;
}
.submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px dashed #999;
    border-radius: 4px;
     color: #fff;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    background-color: #e63946c2;
}

.submit-button:hover {
    background-color: #e63946;
}

.submit-button:disabled {
    background-color: #ccc;
    color: #333 !important;
}
.submit-button::disabled:hover {
    background-color: #ddd;   
}

.fancybox-content  {
    position: relative;
}
.fancybox-content:after {
    content: "";
    background: url("../images/modal_bg.webp") no-repeat center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

input[name="agree"] {
    height: 0px;
    opacity: 0;
    width: 0;
    margin: 0;
}

label.error {
    display: none !important;
}

input.error {
    background: #f751764d !important;
}