.hccp-capture-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hccp-capture-form h2 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.hccp-capture-form p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.hccp-submit-btn {
    width: 100%;
    padding: 12px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.hccp-submit-btn:hover {
    background: #005a87;
}

.hccp-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.hccp-message,
.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

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

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