.bullhorn-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.bullhorn-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

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

.form-group input[type="file"] {
    padding: 10px;
    background: #f9f9f9;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.submit-button {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

#form-message.error {
    background: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

#form-message.success {
    background: #efe;
    color: #070;
    border: 1px solid #cfc;
}

#thank-you-message {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#thank-you-message h2 {
    color: #0073aa;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
