.newsletter-content {
    background: var(--white);
    border: 1px solid var(--neutral200);
    border-radius: 16px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.newsletter-content:hover {
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.label-email {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral900);
    margin-bottom: 1rem;
}

.input-email {
    background: url(/images/envelope-newsletter.svg) no-repeat scroll 16px center, var(--white);
    background-size: 20px 20px;
    padding: 14px 24px 14px 48px;
    border-radius: 50px;
    border: 1px solid var(--neutral300);
    font-size: 15px;
    color: var(--neutral800);
    transition: all 0.3s ease;
}

.input-email:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.input-email::placeholder {
    color: var(--neutral400);
}

.newsletter-button {
    border-radius: 50px;
    background: var(--primary600);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.25s ease;
    cursor: pointer;
}

.newsletter-button:hover {
    background: var(--primary700);
    transform: scale(1.03);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideInUp 0.3s ease-out;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-notification.success {
    background-color: #16a34a;
}

.toast-notification.error {
    background-color: #dc2626;
}

.toast-notification.info {
    background-color: var(--neutral800);
    color: var(--white);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}
