/* Стили индикатора сложности */
#passwordStrengthText {
    display: block;
    margin-top: 5px;
    font-size: 0.875em;
    transition: color 0.3s ease;
}

.toggle-password {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}

.captcha-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.meme-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.answer-btn {
    padding: 0.8rem 1.2rem;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    color: #212529;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
}

.answer-btn:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-2px);
}

.answer-btn:active {
    transform: translateY(0);
}

.message {
    margin-top: 1.5rem;
    padding: 0.8rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.error {
    background-color: #fff3f3;
    color: #dc3545;
    border: 1px solid #f5c2c7;
}

.success {
    background-color: #f0fff4;
    color: #28a745;
    border: 1px solid #c3e6cb;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.btn-success {
    cursor: pointer;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.form-check.is-invalid {
    color: #dc3545;
}

.answers-container.is-invalid {
    outline: 1px solid #dc3545;
    padding: 5px;
    border-radius: 5px;
}