/* SEAA Newsletter Form Styles */
.seaa-newsletter-wrapper {
    margin: 20px 0;
    width: 100%;
    max-width: 500px;
}

.seaa-honey-trap {
    display: none !important;
}

.seaa-form-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.seaa-form-row input[type="email"] {
    flex: 1;
    min-width: 0; /* Prevents overflow pushing the layout on hyper-narrow screens */
    padding: 12px 15px;
    font-family: "Inter", sans-serif !important; 
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #ccc;
    border-right: none;
    outline: none;
    border-radius: 0;
    background: #fff;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Explicitly overrides theme settings that force serif on placeholders */
.seaa-form-row input[type="email"]::-webkit-input-placeholder {
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    color: #a3a3a3;
}
.seaa-form-row input[type="email"]::-moz-placeholder {
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    color: #a3a3a3;
    opacity: 1;
}
.seaa-form-row input[type="email"]::placeholder {
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    color: #a3a3a3;
    opacity: 1;
}

.seaa-form-row input[type="email"]:focus {
    border-color: #222;
}

.seaa-form-row button {
    flex-shrink: 0; /* Ensures the button never shrinks/squishes on small screens */
    padding: 12px 24px;   
    background-color: #D9534F; 
    color: #fff;
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s ease;
    margin: 0;
}

.seaa-form-row button:hover {
    background-color: #c9302c;
}

.seaa-response-msg {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
}

.seaa-response-msg.seaa-success {
    color: #2e7d32;
}

.seaa-response-msg.seaa-error {
    color: #c62828;
}
