/* 短线宝 登录页样式 */
#authLoginOverlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #c9302c 100%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.auth-login-card {
    width: 85%;
    max-width: 340px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo-icon {
    font-size: 36px;
}

.auth-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
    margin-top: 8px;
    letter-spacing: 2px;
}

.auth-input-group {
    margin-bottom: 16px;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    background: rgba(0,0,0,0.03);
    color: #333;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.auth-input:focus {
    border-color: #FFD700;
}

.auth-input::placeholder {
    color: rgba(0,0,0,0.3);
}

.auth-login-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #faad14, #ff7a45);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 4px;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.auth-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-error {
    color: #ff6b6b;
    font-size: 13px;
    text-align: center;
    margin-top: 12px;
    display: none;
}

.auth-hint {
    text-align: center;
    color: rgba(0,0,0,0.25);
    font-size: 12px;
    margin-top: 20px;
}
