/* Newsletter Modal Styles */
.newsletter-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.newsletter-modal .modal-header {
    border-bottom: none;
    padding: 25px 25px 0;
}

.newsletter-modal .modal-body {
    padding: 0 25px 25px;
    text-align: center;
}

.newsletter-modal .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
}

.newsletter-modal .envelope-icon {
    font-size: 48px;
    color: #be092f;
    margin-bottom: 20px;
}

.newsletter-modal .modal-title {
    color: #2b518b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-modal .modal-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 1.5rem;
}

.newsletter-modal .input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.newsletter-modal .form-control {
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 15px;
}

.newsletter-modal .form-control:focus {
    box-shadow: none;
    border-color: #be092f;
}

.newsletter-modal .form-control::placeholder {
    color: #999;
}

.newsletter-modal .subscribe-btn {
    background: #be092f;
    color: white;
    padding: 0 25px;
    border: none;
    font-weight: 500;
}

.newsletter-modal .subscribe-btn:hover {
    background: #a00726 !important;
}

.newsletter-modal .message-container {
    min-height: 20px;
    margin-top: 0.5rem;
}

.newsletter-modal .privacy-text {
    color: #999;
    font-size: 13px;
    margin-top: 1rem;
    margin-bottom: 0;
}

.newsletter-modal .privacy-icon {
    font-size: 12px;
}

/* Status Messages */
.newsletter-modal .text-success {
    color: #28a745 !important;
    font-weight: 500;
}

.newsletter-modal .text-warning {
    color: #ffc107 !important;
    font-weight: 500;
}

.newsletter-modal .text-danger {
    color: #dc3545 !important;
    font-weight: 500;
}

/* Status Icons */
.newsletter-modal .status-icon {
    margin-right: 5px;
} 