/* Mailchimp Subscription Form Styling */
#mc_embed_signup {
    padding: 20px;
    background-color: #ffffff;  /* White background for clean look */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Light shadow for depth */
    text-align: center;
    border: 1px solid #ddd;  /* Light border to separate form from the background */
    max-width: 400px;  /* Make form a fixed width */
    margin: 0 auto;  /* Center the form */
}

#mc_embed_signup input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;  /* Subtle border */
    border-radius: 5px;
    font-size: 16px;
    color: #333;  /* Dark text for readability */
    background-color: #f7f7f7;  /* Light background for the input */
}

#mc_embed_signup .button {
    background-color: #2a9d8f;  /* Your business accent color */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;  /* Smooth transition on hover */
}

#mc_embed_signup .button:hover {
    background-color: #21867a;  /* Darker shade for hover effect */
}

#mc_embed_signup .button:focus {
    outline: none;  /* Remove focus outline */
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.5);  /* Focus state */
}

/* Success and Error Messages */
#mce-success-response {
    color: #28a745;  /* Success green color */
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

#mce-error-response {
    color: #dc3545;  /* Error red color */
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}
