/**
 * Css for Widget newsletter v01
 * Design: come demo.deverso.tech - sfondo scuro, pill con bordo arancione e backdrop blur
 */

.newsletter_v01 {
    background-color: #2B3338;
    padding: 64px 0 80px;
}

.newsletter_v01__title {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: #FAFAFA;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter_v01__form {
    max-width: 542px;
    margin: 0 auto;
}

.newsletter_v01__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.newsletter_v01__input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border: 1px solid #EE6440;
    border-radius: 42px;
    padding: 8px 8px 8px 20px;
}

.newsletter_v01__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    padding: 0;
    outline: none;
}

.newsletter_v01__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter_v01__submit {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 24px;
    background-color: #EE6440;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 12px;
}

.newsletter_v01__submit:hover {
    background-color: #D24825;
}

@media (max-width: 991.98px) {
    .newsletter_v01__title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .newsletter_v01 {
        padding: 48px 0 56px;
    }
    .newsletter_v01__title {
        font-size: 24px;
    }
}
