.pawsitive-contact-form-wrapper,
.pawsitive-newsletter-form-wrapper {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pawsitive-form-title {
    margin-top: 0;
    margin-bottom: 1.5em;
    color: #333;
    font-size: 1.8em;
    text-align: center;
}

.pawsitive-form-group {
    margin-bottom: 1.5em;
}

.pawsitive-form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #555;
}

.pawsitive-form-group .required {
    color: #d93;
}

.pawsitive-form-group input[type="text"],
.pawsitive-form-group input[type="email"],
.pawsitive-form-group input[type="tel"],
.pawsitive-form-group textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.pawsitive-form-group input:focus,
.pawsitive-form-group textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.pawsitive-submit-btn {
    width: 100%;
    padding: 1em;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pawsitive-submit-btn:hover {
    background: #005a87;
}

.pawsitive-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pawsitive-form-messages {
    margin-bottom: 1.5em;
    padding: 1em;
    border-radius: 4px;
    display: none;
}

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

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

.pawsitive-form-messages.loading {
    display: block;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}
