/* Form Container */
.hoh-subscription-form {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: opacity 0.3s ease;
}

/* Form Fields */
.hoh-subscription-form input[type="text"],
.hoh-subscription-form input[type="email"],
.hoh-subscription-form input[type="tel"] {
    width: 100%;
    padding: 8px 12px;
    margin: 4px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Labels */
.hoh-subscription-form label {
    display: block;
    font-weight: bold;
    margin: 8px 0 4px;
    font-size: 14px;
}

/* Required Field Indicator */
.hoh-subscription-form .required {
    color: #dc3232;
    margin-left: 2px;
}

/* Submit Button */
.hoh-subscription-form .submit {
    margin-top: 15px;
}

.hoh-subscription-form input[type="submit"] {
    background-color: #2271b1;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.hoh-subscription-form input[type="submit"]:hover {
    background-color: #135e96;
}

.hoh-subscription-form input[type="submit"]:disabled {
    background-color: #98b6c9;
    cursor: not-allowed;
}

/* Loading State */
.hoh-subscription-form.submitting {
    opacity: 0.6;
    pointer-events: none;
}

/* Messages */
.hoh-subscription-form .form-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 14px;
}

.hoh-subscription-form .form-message.success {
    background-color: #f0f8f0;
    color: #46b450;
    border: 1px solid #46b450;
}

.hoh-subscription-form .form-message.error {
    background-color: #fdf2f2;
    color: #dc3232;
    border: 1px solid #dc3232;
}