.subscribe__form {
    max-width: 255px;
    width: 100%;
    height: 40px;
    padding: 7px 12px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 8px;
}


.subscribe-form__label {
    width: 90%;
}

.subscribe-form__input {
    width: 100%;
    height: 100%;
    border: none;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #000;
    background: none;
}

.subscribe-form__input::-moz-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #8E8E93;
}

.subscribe-form__input:-ms-input-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #8E8E93;
}

.subscribe-form__input::placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #8E8E93;
}

.subscribe-form__button {
    color: #8E8E93;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form__button * {
    transition: all .2s ease;
}

.subscribe-form__button:hover {
    color: #00A76B;
}