/**
 * Public styles for Htv Simple Newsletter plugin
 */

/* Container */
.htv-newsletter-container {
    max-width: 600px;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
}

.htv-newsletter-form-wrapper {
    background-color: #f6e4c0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Header */
.htv-newsletter-header {
    /* text-align: center; */
    margin-bottom: 15px;
}

.htv-newsletter-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

/* Body */
.htv-newsletter-body {
    margin-bottom: 20px;
}

.htv-newsletter-description {
    font-size: 16px;
    line-height: 1.5;
}

/* Form */
.htv-newsletter-form {
    margin-bottom: 20px;
}

.htv-newsletter-form-group {
    margin-bottom: 15px;
}

.htv-newsletter-email {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Terms and Conditions Checkbox */
.htv-newsletter-terms-group {
    margin-bottom: 15px;
}

.htv-newsletter-terms-label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.htv-newsletter-terms {
    margin-right: 8px;
    margin-top: 3px;
}

.htv-newsletter-submit {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #8b7549;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Footer */
.htv-newsletter-footer {
    text-align: center;
    margin-top: 15px;
}

.htv-newsletter-footer-text {
    font-size: 14px;
    margin: 0;
}

/* Response Messages */
.htv-newsletter-response {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
}

.htv-newsletter-response.success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.htv-newsletter-response.error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

.htv-newsletter-response.info {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: #31708f;
}

/* Confirmation Page */
.htv-newsletter-confirmation-container {
    max-width: 600px;
    margin-bottom: 30px;
}

.htv-newsletter-confirmation-message {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.htv-newsletter-confirmation-message h2 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
}

.htv-newsletter-confirmation-message.htv-newsletter-success h2 {
    color: #4A371F;
}

.htv-newsletter-confirmation-message.htv-newsletter-error h2 {
    color: #a94442;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .htv-newsletter-form-wrapper {
        padding: 15px;
    }
    
    .htv-newsletter-title {
        font-size: 20px;
    }
    
    .htv-newsletter-description {
        font-size: 14px;
    }
    
    .htv-newsletter-confirmation-message h2 {
        font-size: 20px;
    }
}
