/**
 * Стили для капчи
 * Файл: captcha.css
 */

.captcha-container {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.captcha-container #captcha-question,
.captcha-container #order-captcha-question {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.captcha-container input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.captcha-container input[type="text"]:focus {
    border-color: #ff7a00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}
