/* 验证码样式 */
.captcha-container {
display: flex;
flex-direction: column;
gap: 15px;
}
.captcha-question {
display: flex;
align-items: center;
gap: 10px;
padding: 15px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
color: white;
font-size: 18px;
font-weight: 600;
}
.captcha-question i {
color: #667eea;
}
.captcha-input-wrapper {
max-width: 150px;
}
.btn-refresh-captcha {
background: none;
border: none;
color: rgba(255, 255, 255, 0.8);
cursor: pointer;
padding: 8px;
border-radius: 50%;
transition: all 0.3s;
font-size: 14px;
}
.btn-refresh-captcha:hover {
background: rgba(255, 255, 255, 0.1);
color: white;
transform: rotate(180deg);
}