.email-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #151724;
    border-radius: 20px;
    overflow: hidden;
    width: 455px;
    color: #151724;
}

.email-input {
    flex: 1;
    border: none;
    padding: 20px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.email-submit {
    background-color: #2ad4d9;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-submit span {
    font-weight: bold;
    margin-bottom: -3px;
}

.email-input::placeholder {
    color: #151724;
}

.email-submit:hover {
    background-color: #1bb3b5;
}

/* Animation for form message */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

#formMessage {
    animation: fadeIn 0.3s ease-in-out;
}

html {
    background-color: #ABDADB;
    font-family: Arial, sans-serif;
    color: #151724;
    font-weight: 400;
}

html,
body {
    margin: 0;
}

b {
    font-weight: 700;
}

.launch {
    font-size: 40px;
    letter-spacing: -4%;
    line-height: 150%;
    margin-top: 40px;
    max-width: 971px;
}

.wave-holder {
    margin-top: 40px;
    height: 377px;
}

.wave {
    left: 0px;
    height: 326px;
    background: url('imgs/wave.svg') no-repeat;
    background-repeat: repeat-x;
    background-size: contain;
    width: 100%;
    position: absolute;
    background-position: center;
}

.soon {
    font-size: 34px;
    letter-spacing: -4%;
    line-height: 140%;
    margin: 40px 0;
}

.mission {
    margin: 60px 0;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -4%;
    display: flex;
}
.mission > div:first-child {
    margin-right: 20px;
}
.mission > div:last-child {
}

.subscribe {
    background-color: #FFFFFF;
    border-radius: 32px;
    padding: 36px;
    font-size: 22px;
}

.subscribe span {
    white-space: nowrap;
}

.soon div {
    display: block;
}

.subscribe {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

/* Responsive adjustments for content that still uses custom classes */
@media (min-width: 376px) and (max-width: 575px) {
    .soon div {
        display: inline-block;
    }

    .wave {
        background-size: cover !important;
    }

    .launch {
        font-size: 26px;
    }

    .soon {
        font-size: 24px;
    }

    .mission {
        font-size: 18px;
        margin: 60px 0;
        line-height: 150%;
        letter-spacing: -4%;
        display: flex;
        align-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .mission > div:first-child {
        margin-bottom: 20px;
    }

    .subscribe {
        font-size: 18px;
    }

    .subscribe span {
        white-space: normal;
    }

    .subscribe>div {
        margin: 10px 0;
        width: 100%;
    }

    .email-input-container {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .soon div {
        display: block;
    }

    .launch {
        font-size: 26px;
    }

    .soon {
        font-size: 24px;
    }

    .mission {
        font-size: 18px
    }

    .subscribe {
        font-size: 18px;
    }

    .subscribe>div {
        margin: 10px 0;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .wave {
        background-size: contain !important;
    }

    .launch {
        font-size: 30px;
    }

    .soon {
        font-size: 24px;
    }

    .mission {
        font-size: 18px
    }

    .subscribe {
        font-size: 18px;
        display: flex;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }
}
