/* Captcha styles for TradeMaster application */

.captcha-container {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 5px;
    background-color: #e9ecef;
    border-radius: 4px;
    text-align: center;
}

.captcha-input-group {
    display: flex;
    align-items: center;
}

.captcha-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.refresh-captcha {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    margin-left: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.refresh-captcha:hover {
    background-color: #5a6268;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .captcha-question {
        font-size: 1rem;
    }
    
    .captcha-input-group {
        flex-direction: column;
    }
    
    .refresh-captcha {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
} 