.newsletter-form {
    .newsletter-form__wrapper {
        display: flex;
        justify-content: center;

        .newsletter-form__group:first-of-type {
            width: 50%;
        }

        .newsletter-form__field {
            input[type="text"] {
                width: 100%;
                border: none;
                padding: 15px;
                background-color: #e7e7e7;
                border-radius: 5px;
                font-family: "gilroy-bold", "sans-serif";
                height: 80px;
                font-size: 20px;

                &::placeholder {
                    color: black; 
                }
            }
        }

        .newsletter-form__button {
            position: relative;
            transition: all .4s ease-in-out;
            background-color: #e32736 !important;
            color: #e32736 !important;
            padding: 15px;
            width: 50px;
            margin-left: 5px;
            border: none;
            font-size: 24px;
            border-radius: 5px;
            height: 80px;
            -webkit-box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, .5);
            -moz-box-shadow: 0px 5px 5px -5px rgba(0,0,0,.5);
            box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, .5);

            svg {
                line {
                    stroke: white;
                }
            }
        }
    }

    .input--hidden {
        opacity: 0;
        visibility: hidden;
    }
}

.contact-page {
    .newsletter-form {
        .newsletter-form__wrapper {
            .newsletter-form__group:first-of-type {
                width: 100%;
            }
        }
    }
}

.notice-wrapper {
    max-width: 1201px;
    margin-inline: auto;
    background-color: #e7e7e7;
    text-align: center;
    border-radius: 5px;
    padding: 20px 15px;
    margin-bottom: 32px;
}