@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');
.sub {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5%;
}

.sub1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5%;
}

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    width: 100%;
    height: 474px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(61, 159, 255, 0.2)
}

.subscribe1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    width: 100%;
    height: 474px;
    border-radius: 10px;
    overflow: auto;
    /* box-shadow: 0 4px 20px rgba(61, 159, 255, 0.2) */
}

.if {
    width: 100%;
}

.subscribe__title {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 18px;
}

.subscribe__copy {
    max-width: 500px;
    text-align: center;
    margin-bottom: 53px;
    line-height: 1.5;
}

.form {
    margin-bottom: 25px;
}

.form__email {
    padding: 20px 25px;
    border-radius: 5px;
    border: 1px solid #CAD3DB;
    width: 431px;
    font-size: 18px;
    color: #0F121F;
}

.form__email:focus {
    outline: 1px solid #3D9FFF;
}

.form__button {
    background: #3D9FFF;
    padding: 10px;
    border: none;
    width: 244px;
    height: 65px;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 20px rgba(61, 159, 255, 0.7);
}

.form__button:hover {
    box-shadow: 0 10px 20px rgba(61, 159, 255, 0.7);
}

.notice {
    width: 345px;
}

@media (max-width: 800px) {
    .form__button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 20%;
    }
    .form__email {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}