.gift-container {
    padding: 32px 24px 32px 24px;
    background: #FAFAFA;
    position: relative;
    border-top: 1px solid rgb(223,223,223);
}

.gift-container__title {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 41px;
    color: #E0387E;

}

.gift-container__description {
    margin-top: 12px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}

.gift-container__input {
    display: block;
    width: 100%;
    margin-top: 24px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #A1A1A1;
    box-sizing: border-box;
    outline: 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
}

.gift-container__button {
    width: 100%;
    margin-top: 24px;
    height: 50px;
    background: #FAFAFA;
    border: 1px solid #CBCBCB;
    box-sizing: border-box;
    border-radius: 2px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #E0387E
}

@media screen and (min-width: 1024px) {
    .gift-container {
        padding: 48px 32px 48px 32px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .gift-container__button {
        flex-grow: 1;

        width: auto;
        margin: 0 0 0 24px;
    }
    .gift-container__input {
        flex-grow: 2;
        width: auto;
        margin: 0 0 0 48px;
    }
}
