.cta-section {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    width: 100%;
    background: #111B31;
    margin-bottom: 60px;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 100px;
    gap: 60px;
    width: 1180px;
}

.cta-title {

    font-weight: 700;
    font-size: 50px;
    line-height: 102%;
    color: #FFFFFF;
    max-width: 980px;
}

.cta-form {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 980px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 380px;
}

.input-label {

    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.input-field {
    width: 100%;
    height: 60px;
    padding: 0 25px;

    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 70px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #050F27;
    background: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 30px auto 0;
}
/* ======================== */
/*      АДАПТИВНОСТЬ        */
/* ======================== */

/* Планшеты */
@media (max-width: 992px) {
    .cta-container {
        padding: 60px 40px;
        align-items: center;
        width: 100%;
    }

    .cta-title {
        font-size: 36px;
        text-align: center;
        max-width: 100%;
    }

    .cta-form {
        width: 100%;
        gap: 20px;
        justify-content: center;
    }

    .input-group {
        width: 45%;
    }

    .cta-button {
        width: 200px;
        height: 60px;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .cta-container {
        padding: 40px 20px;
        align-items: center;
    }

    .cta-title {
        font-size: 28px;
        text-align: center;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .input-group {
        width: 100%;
    }

    .input-field {
        height: 50px;
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        height: 55px;
        font-size: 16px;
        margin: 20px 0 0;
    }
}
