.bullhorn-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
    display: none;
}

.bullhorn-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block !important;
}

.bullhorn-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block !important;
}

.bullhorn-message a {
    color: inherit;
    text-decoration: underline;
}

#bullhorn-cv-upload-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.consent-checkbox-wrapper {
    margin: 1rem 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 4px;
    width:auto;
}

.consent-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.consent-text a {
    color: inherit;
    text-decoration: underline;
}

.consent-text a:hover {
    color: #333;
} 

/* reCAPTCHA styling */
#bullhorn-cv-upload-form .g-recaptcha {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    #bullhorn-cv-upload-form .g-recaptcha {
        justify-content: center;
        transform: scale(0.9);
        transform-origin: center;
    }
} 