@charset "utf-8";


.shop-contact-form .form-group {
    margin-bottom: 20px;
}

.shop-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.shop-contact-form input[type="text"],
.shop-contact-form input[type="email"],
.shop-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.shop-contact-form button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.shop-contact-form button:hover {
    background: #005a87;
}

#form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

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

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

