/* Captcha Stilleri */
.captcha-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.captcha-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
}

.captcha-image img {
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 6px;
    background: white;
    padding: 5px;
    max-width: 100%;
    height: auto;
}

.captcha-refresh {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #60a5fa;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.captcha-refresh:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: scale(1.05);
}

.captcha-refresh:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.captcha-container input {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.captcha-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 8px;
    text-align: center;
    padding: 8px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: none;
}

.captcha-success {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 8px;
    text-align: center;
    padding: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: none;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .captcha-image {
        flex-direction: column;
        gap: 10px;
    }
    
    .captcha-image img {
        max-width: 180px;
    }
    
    .captcha-refresh {
        width: 100%;
        justify-content: center;
    }
}
