.application {
    width: 100%;
    padding: 54px 0 100px;
    background: #ffffff;
    color: #000000;
}

.application__container {
    width: calc(100% - 80px);
    max-width: 1360px;
    margin: 0 auto;
}

.application__intro {
    margin-bottom: 64px;
}

.application__title {
    margin: 0 0 34px;

    color: #233778;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.application__description {
    color: #233778;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.application__description p {
    margin: 0 0 18px;
}

.application__description p:last-child {
    margin-bottom: 0;
}

.application__form {
    width: 100%;
}

.application__field {
    margin-bottom: 32px;
}

.application__label {
    display: block;

    margin-bottom: 14px;

    color: #000000;

    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;
}

.application__input {
    display: block;

    box-sizing: border-box;
    width: 100%;
    height: 42px;

    padding: 0 16px;

    border: 1px solid transparent;
    border-radius: 10px;
    outline: none;

    background: #f4f4f4;
    color: #000000;

    font: inherit;
    font-size: 16px;
    font-weight: 400;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.application__input::placeholder {
    color: #b1b1b1;
    opacity: 1;
}

.application__input:hover {
    background: #f1f1f1;
}

.application__input:focus {
    border-color: #56c3e8;
    background: #ffffff;

    box-shadow: 0 0 0 2px rgba(86, 195, 232, 0.12);
}

.application__submit {
    display: flex;
    justify-content: center;

    margin-top: 30px;
}

.application__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    width: 325px;
    height: 74px;

    padding: 0 30px;

    border: 2px solid #56c3e8;
    border-radius: 999px;

    background: transparent;
    color: #56c3e8;

    font: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.application__button:hover {
    background: #56c3e8;
    color: #ffffff;
}

.application__button:active {
    background: #56c3e8;
    color: #ffffff;
}


/* =========================
   Адаптив
   ========================= */

@media (max-width: 1024px) {
    .application {
        padding: 45px 0 80px;
    }

    .application__container {
        width: calc(100% - 48px);
    }

    .application__title {
        font-size: 28px;
    }

    .application__label {
        font-size: 21px;
    }
}

@media (max-width: 600px) {
    .application {
        padding: 32px 0 60px;
    }

    .application__container {
        width: calc(100% - 32px);
    }

    .application__intro {
        margin-bottom: 44px;
    }

    .application__title {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .application__description {
        font-size: 15px;
    }

    .application__field {
        margin-bottom: 24px;
    }

    .application__label {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .application__input {
        height: 46px;
    }

    .application__submit {
        margin-top: 32px;
    }

    .application__button {
        width: 100%;
        max-width: 325px;
        height: 60px;
        font-size: 18px;
    }
}