#subscribe-form {
    display: flex;
    background-color: #eeeeee;
    padding: 10px 20px;
    border-radius: 9999px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

#subscribe-form input[type="email"] {
    all: unset; /* Сбрасывает ВСЕ стили до дефолтных значений браузера */

    /* Восстанавливаем нужные стили */
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    appearance: none;

    /* Удалим подчеркивания и цвета автозаполнения (в некоторых браузерах) */
    color: #535355;
    caret-color: #535355;
}

/* Убираем автозаполнение стилей браузера */
#subscribe-form input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #eeeeee inset !important;
    -webkit-text-fill-color: #000 !important;
}
#subscribe-form input[type="email"]:active,
#subscribe-form input[type="email"]:focus,
#subscribe-form input[type="email"].active {
    border: none;
    border-bottom: none !important;
}

#subscribe-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: revert-layer;
}

#subscribe-form .form-message {
    margin-top: 10px;
    font-size: 13px;
    color: green;
}