/* Newsletter Mailer Pro - Public Styles */

.nmp-subscribe-form-container {
    max-width: 500px;
    margin: 20px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nmp-form-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.nmp-form-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.nmp-subscribe-form {
    margin: 0;
}

.nmp-form-field {
    margin-bottom: 15px;
}

.nmp-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.nmp-input:focus {
    outline: none;
    border-color: #0073aa;
}

.nmp-submit-button {
    width: 100%;
    padding: 14px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.nmp-submit-button:hover {
    background: #005a87;
}

.nmp-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.nmp-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.nmp-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.nmp-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.nmp-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .nmp-subscribe-form-container {
        padding: 20px;
    }
    
    .nmp-form-title {
        font-size: 20px;
    }
}
