/* Biz Hub Signup Sheet Styles */

/* Frontend Styles */
.bhs-signup-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bhs-signup-form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

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

.bhs-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.bhs-form-group input[type="text"],
.bhs-form-group input[type="email"],
.bhs-form-group input[type="tel"],
.bhs-form-group input[type="url"],
.bhs-form-group input[type="number"],
.bhs-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.bhs-form-group input:focus,
.bhs-form-group select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.bhs-submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bhs-submit-button:hover {
    background: #005177;
}

/* Multiplication CAPTCHA Styles */
.bhs-captcha {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bhs-captcha p {
    margin: 0 0 10px 0;
    color: #666;
}

.captcha-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.bhs-captcha input[type="number"] {
    width: 100px;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 8px;
}

/* Message Styles */
.bhs-message {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.bhs-message.success {
    background: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.bhs-message.error {
    background: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .bhs-signup-form {
        margin: 10px;
        padding: 15px;
    }

    .bhs-form-group input[type="text"],
    .bhs-form-group input[type="email"],
    .bhs-form-group input[type="tel"],
    .bhs-form-group input[type="url"],
    .bhs-form-group input[type="number"],
    .bhs-form-group select {
        font-size: 14px;
    }

    .bhs-submit-button {
        padding: 10px;
        font-size: 14px;
    }

    .captcha-question {
        font-size: 16px;
    }
}

/* Admin Interface Styles */
.wrap h1 {
    margin-bottom: 1em;
}

.wrap .widefat {
    margin-top: 1em;
}

.wrap .button {
    margin: 0 0.5em;
}

.wrap .form-table th {
    width: 200px;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .wrap .form-table th {
        width: 100%;
        display: block;
    }

    .wrap .form-table td {
        display: block;
        padding: 0.5em 0;
    }
} 