/* -- LAYOUT -- */

.subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe .align {
    display: flex;
    align-items: center;
}

.subscribe img {
    flex-shrink: 0;
}

.subscribe .lines {
    display: flex;
    flex-direction: column;
}

/* -- STYLING -- */

.subscribe {
    background-color: #ee1d25;
}

.subscribe input::placeholder {
    color: #989898;
    font-family: 'Roboto Regular';
}

.subscribe input {
    width: 275px;
    font-family: 'Roboto Regular';
    border-radius: 0;
    border: none;
}

.subscribe .line-1 {
    font-family: 'Roboto Bold';
    font-size: 24px;
    color: white;
}

.subscribe .line-2 {
    font-size: 16px;
    color: white;
}

.subscribe button {
    border: none;
    text-transform: uppercase;
    background-color: #359323;
    color: #eeeeee;
    font-family: 'Roboto Bold';
    border-radius: 3px;
    font-size: 15px;
}

/* -- SPACING -- */

.subscribe input {
    padding-left: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-left: 25px;
    margin-right: 20px;
}

.subscribe .lines {
    margin-left: 15px;
}

.subscribe img {
    margin-top: -39px; /* [!] ??? */
}

.subscribe button {
    padding-left: 25px;
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
}

.subscribe .success {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

/* == MOBILE == */

@media screen and (max-width: 1150px) {
    /* -- LAYOUT -- */
    .subscribe img {
        display: none;
    }
    /* -- SPACING -- */
    .subscribe .lines {
        margin-top: 25px;
        margin-bottom: 25px;
        margin-left: 5px;
    }
}

@media screen and (max-width: 900px) {
    /* -- LAYOUT -- */
    .subscribe .align {
        flex-direction: column;
    }
    /* -- SPACING -- */
    .subscribe .lines {
        /*margin-top: 15px;*/
    }
    .subscribe input {
        /*margin-top: 15px;*/
    }
    .subscribe button {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}
