/* Newsletter Subscription */

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(61, 159, 255, 0.2);
}

.subscribe__title {
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: "Protest Revolution", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.subscribe__copy {
    max-width: 450px;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.newsletter_form {
    margin-bottom: 10px;
}

.form__email {
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid #CAD3DB;
    font-size: 18px;
    color: #0F121F;
    flex: 1;
}

.form__email:focus {
    outline: 1px solid #3D9FFF;
}

.form__button {
    background: #3D9FFF;
    padding: 8px 25px 8px 25px;
    border: none;
    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 {
    text-align: center;
}
