/**
 * 登录频率控制样式
 */

/* 登录按钮禁用状态样式 */
.login-btn:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}



/* 点击限制警告信息样式 */
.click-limit-warning {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
}

/* 按钮禁用时的过渡效果 */
.login-btn {
    transition: all 0.3s ease;
}

/* 禁用状态下的按钮文字样式 */
.login-btn:disabled {
    color: #666 !important;
    text-shadow: none;
}

/* Enter键被阻止时的输入框样式 */
.enter-blocked {
    border-color: #ff4444 !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.5) !important;
    animation: shake 0.5s ease-in-out;
}

/* 输入框抖动动画 */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
} 