/* Custom green color - matches wimc.ch website */
:root {
    --wimc-green: #4a7f3c; /* Website green color */
    --wimc-green-hover: #3d6a32; /* Darker green for hover state */
}

.wimc-newsletter-form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.wimc-newsletter-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.wimc-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wimc-newsletter-field {
    display: flex;
    flex-direction: column;
}

.wimc-newsletter-field label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.wimc-newsletter-field .required {
    color: #d63638;
}

.wimc-newsletter-field input[type="text"],
.wimc-newsletter-field input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.wimc-newsletter-field input[type="text"]:focus,
.wimc-newsletter-field input[type="email"]:focus {
    outline: none;
    border-color: var(--wimc-green);
    box-shadow: 0 0 0 1px var(--wimc-green);
}

.wimc-newsletter-field button[type="submit"] {
    padding: 12px 24px;
    background-color: var(--wimc-green);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wimc-newsletter-field button[type="submit"]:hover {
    background-color: var(--wimc-green-hover);
}

.wimc-newsletter-field button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wimc-newsletter-message {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.wimc-newsletter-message.wimc-newsletter-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wimc-newsletter-message.wimc-newsletter-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wimc-newsletter-loading {
    text-align: center;
    padding: 10px;
    color: var(--wimc-green);
    font-style: italic;
}

